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

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

Added original make3d

File size: 406 bytes
Line 
1function x = s(q)
2% S(Q) Scalar part of a full quaternion.
3
4% Copyright © 2005 Stephen J. Sangwine and Nicolas Le Bihan.
5% See the file : Copyright.m for further details.
6
7% error(nargchk(1, 1, nargin)), error(nargoutchk(0, 1, nargout))
8
9% This function is written in terms of its private counterpart
10% so that the underlying representation of a quaternion is a
11% private aspect of the class.
12
13x = ess(q);
Note: See TracBrowser for help on using the repository browser.