source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/qtfm/@quaternion/display.m @ 37

Last change on this file since 37 was 37, checked in by (none), 14 years ago

Added original make3d

File size: 387 bytes
Line 
1function display(q)
2% DISPLAY Display array.
3% (Quaternion overloading of standard Matlab function.)
4
5% Copyright © 2005 Stephen J. Sangwine and Nicolas Le Bihan.
6% See the file : Copyright.m for further details.
7
8if isequal(get(0,'FormatSpacing'),'compact')
9  disp([inputname(1) ' =']);
10  disp(q);
11else
12  disp(' ');
13  disp([inputname(1) ' =']);
14  disp(' ');
15  disp(q);
16  disp(' ');
17end
Note: See TracBrowser for help on using the repository browser.