home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
misc
/
mathplot
/
macros
/
test14.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-02-27
|
386b
|
20 lines
/* test discussion */
address "MPlot_ARexx"
options results
setnumprecision 4
getpoints "cos(x) zero stem a."
do i=0 to a.xpoints.count-1
say i a.xpoints.i a.ypoints.i a.typ.i
end
getpoints "cos(x) max stem a."
do i=0 to a.xpoints.count-1
say i a.xpoints.i a.ypoints.i a.typ.i
end
getpoints "cos(x) turn stem a."
do i=0 to a.xpoints.count-1
say i a.xpoints.i a.ypoints.i a.typ.i
end