home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l455 / 2.ddi / MUTOOLS2.DI$ / MHIMATIC.M < prev    next >
Encoding:
Text File  |  1993-03-11  |  571 b   |  27 lines

  1. % mhimatic
  2. %
  3. % Make up `himat_ic' for the H-infinity example
  4. %
  5. echo off
  6.  WDEL = nd2sys([50,5000],[1,10000]);
  7.  WP = nd2sys([0.5,1.5],[1,0.03]);
  8.  WDEL = daug(WDEL,WDEL);  
  9.  WP = daug(WP,WP);
  10.  mkhimat
  11.  
  12. echo off
  13. systemnames = 'himat WDEL WP';
  14. inputvar = '[pert(2); dist(2); control(2)]';
  15. outputvar = '[ WDEL ; WP; himat + dist ]';
  16. input_to_himat = '[ control + pert ]';
  17. input_to_WDEL = '[ control ]';
  18. input_to_WP = '[ himat + dist ]';
  19. sysoutname = 'himat_ic';
  20. cleanupsysic = 'yes';
  21. sysic
  22.  
  23. %
  24. % Copyright MUSYN INC 1991,  All Rights Reserved
  25. echo on
  26.  
  27.