source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/qtfm/@quaternion/tan.m @ 177

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

Added original make3d

File size: 379 bytes
Line 
1function Y = tan(X)
2% TAN    Tangent.
3% (Quaternion overloading of standard Matlab function.)
4
5% Copyright © 2006 Stephen J. Sangwine and Nicolas Le Bihan.
6% See the file : Copyright.m for further details.
7
8Y = sin(X) ./ cos(X);
9
10% Note. This may not be the best way to implement tan,
11% but it has the merit of simplicity and will work for
12% all cases for which sin and cos work.
Note: See TracBrowser for help on using the repository browser.