from
Homogeneous Transformation Matrix Function Set
by Alessandro Formaglio
A set of 9 functions to extend and simplify usage of Robotics Toolbox by Peter Corke
|
| M=sk(vett)
|
function M=sk(vett)
%Syntax:
%
% M=sk(v)
%
% The function creates a skew symmetric matrix obatined by
% applying the skew operator to the vector v.
%
% Es
% v=[10,20,30]
% M=sk(v)
%
%
% Function by Alessandro Formaglio
% Department fo Information Engineering
% University of Siena
% alex@dii.unisi.it
M=[0,-vett(3),vett(2);
vett(3),0,-vett(1);
-vett(2),vett(1),0];
|
|
Contact us at files@mathworks.com