You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

74 lines
2.4 KiB

%TRANSL2 Create or unpack an SE2 translational transform
%
% Create a translational transformation matrix::
%
% T = TRANSL2(X, Y) is an SE2 homogeneous transform (3x3) representing a
% pure translation.
%
% T = TRANSL2(P) is a homogeneous transform representing a translation or
% point P=[X,Y]. If P (Mx2) it represents a sequence and T (3x3xM) is a
% sequence of homogenous transforms such that T(:,:,i) corresponds to the
% i'th row of P.
%
% Unpack the translational part of a transformation matrix::
%
% P = TRANSL2(T) is the translational part of a homogeneous transform as a
% 2-element column vector. If T (3x3xM) is a homogeneous transform
% sequence the rows of P (Mx2) are the translational component of the
% corresponding transform in the sequence.
%
% Notes::
% - Somewhat unusually this function performs a function and its inverse. An
% historical anomaly.
%
% See also TRANSL.
% Copyright (C) 1993-2015, by Peter I. Corke
%
% This file is part of The Robotics Toolbox for MATLAB (RTB).
%
% RTB is free software: you can redistribute it and/or modify
% it under the terms of the GNU Lesser General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% RTB is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU Lesser General Public License for more details.
%
% You should have received a copy of the GNU Leser General Public License
% along with RTB. If not, see <http://www.gnu.org/licenses/>.
%
% http://www.petercorke.com
function T = transl2(x, y)
if nargin == 1
if ishomog2(x)
if ndims(x) == 3
% transl(T) -> P, trajectory case
T = squeeze(x(1:2,3,:))';
else
% transl(T) -> P
T = x(1:2,3);
end
elseif all(size(x) == [3 3])
T = x(1:2,3);
elseif length(x) == 2
% transl(P) -> T
t = x(:);
T = [eye(2) t(:);
0 0 1];
else
% transl(P) -> T, trajectory case
n = numrows(x);
T = repmat(eye(3,3), [1 1 n]);
T(1:2,3,:) = x';
end
elseif nargin == 2
% transl(x,y) -> T
t = [x; y];
T = rt2tr( eye(2), t);
end