Dynamic-Calibration/utils/screw utils/tw_cord2tw.m

8 lines
204 B
Mathematica
Raw Normal View History

2019-12-18 11:25:45 +00:00
function m = tw_cord2tw(xi_hat)
%WEDGE_OPERATOR formes matrix m representing twist from
%twist coordinates xi = (v ,w)'
m = [vec2skewSymMat(xi_hat(4:6,1)), xi_hat(1:3,1);
0, 0, 0, 0];
end