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

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

Added original make3d

File size: 1.2 KB
Line 
1% Test script for the Quaternion Toolbox for Matlab.
2
3% Copyright © 2005, 2006 Stephen J. Sangwine and Nicolas Le Bihan.
4% See the file : Copyright.m for further details.
5
6% This script runs a series of other test scripts, each designed to test
7% one or more functions in the toolbox. No errors should be generated and
8% the script should run to completion.
9
10display('Testing quaternion fundamentals ...');
11test_fundamentals;
12display('Testing square root function ...')
13test_sqrt
14display('Testing exponential function ...')
15test_exp
16display('Testing trigonometric functions ...');
17test_trigonometric
18display('Testing inverse trigonometric functions ...');
19test_inverse_trig
20display('Testing hyperbolic functions ...');
21test_hyperbolic
22display('Testing inverse hyperbolic functions ...');
23test_inverse_hyperbolic
24display('Testing discrete quaternion Fourier transforms ...')
25test_qdft
26display('Testing fast quaternion Fourier transforms ...')
27test_qfft
28test_fft
29display('Testing singular value decompositions ...')
30test_svd
31test_svdj
32display('Testing eigenvalue decomposition ...')
33test_eig
34display('Testing convolutions 1D and 2D ...')
35test_conv
36
37display('All tests completed without error.')
Note: See TracBrowser for help on using the repository browser.