home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / WINDOWS / DIVERSEN / MATHS171 / STARTUP1.M < prev    next >
Text File  |  1994-03-18  |  506b  |  26 lines

  1. % called by startup.m to complete the initiallization
  2.  
  3. %       S.Halevy 7/31/92
  4. %       Copyright (c) 1992 by the MathWizards
  5.  
  6. % load the built-in functionality         
  7. %_loadlib
  8.  
  9. % Graphics Windows Placement
  10. _xw=[0.59   0   0.4 0.5];
  11.  
  12. %Graphics Windows Titles
  13. _xt=['G1'];
  14.  
  15. gwinit(_xw,_xt);   % initialize Graphic Windows
  16.  
  17. % you can clear these variables now
  18. % clear _xw,_xt
  19.  
  20. % define constants which can be global
  21. i=1I;
  22. j=1J;
  23. e=2.71828182845904523536;
  24. disp('startup completed')
  25.  
  26.