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

8 lines
151 B
Matlab

function y = Ry( ang )
% Rotate Matrix by rotation axis Y
% Detailed explanation goes here
y=[cos(ang),0,-sin(ang);0,1,0;sin(ang),0,cos(ang)];
end