www.gusucode.com > robotics 案例源码程序 matlab代码 > robotics/ConvertHomogeneousTransformationtoRotationMatrixExample.m

    %% Convert Homogeneous Transformation to Rotation Matrix  

% Copyright 2015 The MathWorks, Inc.


%%  
tform = [1 0 0 0; 0 -1 0 0; 0 0 -1 0; 0 0 0 1];
rotm = tform2rotm(tform)