MATLAB: Input euler angles which outputs rotation matrix R

angleseulerMATLABmatrixrotation

Hi , i have the euler angles ?, ?, ? which i want to input in a function which returns a rotation matrix R in matlab

Best Answer

function R = RotationMatrix(phi,theta,psi)
p = phi ;
t = theta ;
s = psi ;
D = [cos(p) sin(p) 0 ; -sin(p) cos(p) 0 ; 0 0 1] ;
C = [1 0 0 ; 0 cos(t) sin(t) ; 0 -sin(t) cos(t)] ;
B = [cos(s) sin(s) 0 ; -sin(s) cos(s) 0 ; 0 0 1] ;
R = B*C*D ;
end