home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l455 / 4.ddi / OPTIM.DI$ / OPTDEMO.M < prev    next >
Encoding:
Text File  |  1993-03-11  |  479 b   |  31 lines

  1. %        -------    OPTIMIZATION TOOLBOX Demonstrations---
  2. %
  3. %        1)    Tutorial Walk Through
  4. %        2)    Banana Function
  5. %        3)    Goal Attainment
  6. %        4)    Data fitting
  7. %
  8. %        0)      Quit
  9. echo off
  10.  
  11. % Optimization Toolbox Demonstrations.
  12.  
  13. %    A.C.W.Grace 5-18-89
  14.  
  15. while 1
  16.     demos= ['tutdemo '
  17.         'bandemo '
  18.         'goaldemo'
  19.         'datdemo '];
  20.     clc
  21.     help optdemo
  22.     n = input('Select a demo number: ');
  23.     if ((n <= 0) | (n > 12)) 
  24.         break
  25.     end
  26.     demos = demos(n,:);
  27.     eval(demos)
  28.     clear
  29. end
  30. clc
  31.