Name
xs2emf — send graphics to a file in EMF syntax (Only for
Windows)
Calling Sequence
xs2emf(win_num,filen [,orientation])
Parameters
- win_num
integer scalar.
- filen
string, file name.
- orientation
optional character, with possible values 'p' (portrait) or 'l'
(landscape). The default value is 'p'.
Description
xs2emf
sends the recorded graphics of the window
win_num
in the file filen
in EMF
format.
For format EMF we create an EPS file which will be convert into EMF
format by pstoedit.
Examples
if MSDOS then
scf(0);
plot2d();
//EMF export
xs2emf(0,'foo.emf');
end