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

6 lines
140 B
Mathematica
Raw Normal View History

2019-12-18 11:25:45 +00:00
function y = rodrig_formula(w_hat,theta)
%RODRI computes exo(w_hat*theta)
y = eye(3) + w_hat*sin(theta) + w_hat^2*(1-cos(theta));
end