home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C!T ROM 5
/
ctrom5b.zip
/
ctrom5b
/
WINDOWS
/
DIVERSEN
/
MATHS171
/
AUTOPLT.M
< prev
next >
Wrap
Text File
|
1994-01-23
|
403b
|
18 lines
function z=autoplt(x,y,w,t)
% autoplot is an M-file which generates an x-y plot in a specified
% graphics window.
%
% y=autoplot(x, y, w, t)
% x,y - variables to plot
% w - graphics window number
% t - window title.
%
% autoplot is used by the autoasgn.m (AutoAssign demo)
% S.Halevy 7/31/92
% Copyright (c) 1992 by the MathWizards
gwsel(w,[],t);
plot(x,y),grid
z=[];