![]() |
displayPURPOSE
Displays a pose.
SYNOPSIS
function display(P)
DESCRIPTION
Displays a pose. Disply the information stored in the pose, P. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function display(P) 0002 % Displays a pose. 0003 % 0004 % Disply the information stored in the pose, P. 0005 0006 fprintf('x:%f y:%f o:%f\n',P.data(1),P.data(2),P.data(3)); 0007 |