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

  1. function y=automsh(z,w,t)
  2. % automesh is an M-file which generates a mesh plot in a specified
  3. % graphics window.
  4. %
  5. % y=automesh(z, w, t)
  6. % z - variable to plot
  7. % w - graphics window number
  8. % t - window title.
  9. %
  10. % automesh is used by the autoasgn.m (AutoAssign demo)
  11.  
  12. %       S.Halevy 7/31/92
  13. %       Copyright (c) 1992 by the MathWizards
  14.  
  15. gwsel(w,[],t);
  16. mesh(z)
  17. y=[];
  18.