image thumbnail
from robotic toolbox by Paolo Di Prodi
A toolbox for industrial robot manipulator

[EulerMat]=Euler3(fi1,theta,fi2)
%% Author: epokh
%% Website: www.epokh.org/drupy
%% This software is under GPL

%%Transformation of the end effector frame following the Euler angles in
%%closed form
%%input: rotation angles along y,z,y axis expressed in degrees
function [EulerMat]=Euler3(fi1,theta,fi2)

EulerMat=RotZ(fi1)*RotY(theta)*RotZ(fi2);

end

Contact us at files@mathworks.com