Dynamic-Calibration/utils/robotics/Rotz_s.m

7 lines
160 B
Mathematica
Raw Normal View History

2019-12-18 11:25:45 +00:00
function R = Rotz_s(x)
%UNTITLED Summary of this function goes here
% Detailed explanation goes here
R=[cos(x) -sin(x) 0; sin(x) cos(x) 0; 0 0 1];
end