home *** CD-ROM | disk | FTP | other *** search
- function specials
- %SPECIALS List of special demonstrations.
- % SPECIALS, by itself, presents a list of special demonstrations.
-
- % Copyright (c) 1984-93 by The MathWorks, Inc.
-
- % Labels
- labels = str2mat(...
- 'Vibrating Logo', ...
- 'Game of Life', ...
- 'Viewing a Penny', ...
- 'Chaotic Attractor', ...
- 'Earth''s Topography', ...
- 'Superquadrics');
- c = computer;
- if c(1:2) ~= 'PC' & c(1:2) ~= 'MA'
- labels = str2mat(labels, ...
- 'Hurricane Andrew');
- end
-
- % Callbacks
- callbacks = [ ...
- 'vibes '
- 'life '
- 'penny '
- 'lorenz '
- 'earthmap '
- 'sqdemo '];
- if c(1:2) ~= 'PC' & c(1:2) ~= 'MA'
- callbacks = [callbacks; ...
- 'andrew '];
- end
-
- choices('SPEC', 'MathWorks Specials', labels, callbacks);
-