How to plot multiple curve into ps file?# Unix - 噫吁兮,危乎高哉
l*r
1 楼
I want to put plot figure into a ps file. For example script is as follows:
gset term postscript color
gset output 'temp.ps'
I=[1:1:30];
J=[1:0.5:30];
plot(I, 'r', J, 'b');
The result file "temp.ps" will contain two pages. How can i make it contain
only one page. Thanks.
gset term postscript color
gset output 'temp.ps'
I=[1:1:30];
J=[1:0.5:30];
plot(I, 'r', J, 'b');
The result file "temp.ps" will contain two pages. How can i make it contain
only one page. Thanks.