Name
xs2ppm — send graphics to a file in PPM syntax
Calling Sequence
xs2ppm(win_num,filen)
Parameters
- win_num
integer scalar or vector .
- filen
string, file name.
Description
xs2ppm
sends the recorded graphics of the window
win_num
in the file filen
in PPM
format.
Examples
scf(0)
plot2d()
//PPM export
filename='foo.ppm';
xs2ppm(0,filename);