Name
xs2ppm — send graphics to a PPM file.
Calling Sequence
xs2ppm(win_num, file_name)
xs2ppm(fig, file_name)
Parameters
- win_num
- integer, id of the figure to export. 
- fig
- handle of the figure to export. 
- file_name
- string, name of the exported file. 
Description
xs2ppm exports the display of a graphic window into a PPM file.
Examples
 
scf(0)
plot2d()
//PPM export
filename='foo.ppm';
xs2ppm(0,filename);