home *** CD-ROM | disk | FTP | other *** search
- function demo
- %DEMO Demonstrate some of MATLAB's capabilities.
- % DEMO, by itself, presents a menu of demos.
-
- % Copyright (c) 1984-93 by The MathWorks, Inc.
-
- labels = str2mat(...
- 'Introduction', ...
- 'MathWorks Specials', ...
- 'Data Analysis', ...
- 'Numerical Analysis', ...
- 'Mathematical Examples', ...
- 'Images and Color Maps', ...
- 'Sounds', ...
- 'Sparse Matrices', ...
- 'MATLAB Benchmark');
-
- % Callbacks
- callbacks = [ ...
- 'intro '
- 'specials '
- 'datalist '
- 'nalist '
- 'mathlist '
- 'imagedemo '
- 'sounddemo '
- 'sparlist '
- 'bench '];
-
- choices('DEMO', 'MATLAB 4.0 Demonstrations', labels, callbacks);
-