home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / utils / mathstud / automsh.m < prev    next >
Encoding:
Text File  |  1995-05-19  |  384 b   |  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.