【gnuplot-wgnuplot】将图片输出的方法
gnuplot是Linux系统经常使用的画图软件,也能在Windows系统当中使用。但是作为在Windows系统当中应用wgnuplot保存画出来的图形的方法与Linux系统中稍有不同。假设已画好图形,并设置好参数,以下程序就是在Windows系统中把wgnuplot所画图形输出成不同格式的方法。set term pushset term pngset output "2.png&quo
·
gnuplot是Linux系统经常使用的画图软件,也能在Windows系统当中使用。但是在Windows系统当中应用wgnuplot保存画出来的图形的方法与Linux系统中稍有不同。假设已画好图形,并设置好参数,以下指令就是在Windows系统中把wgnuplot所画图形输出成不同格式的方法。
set term push
set term png
set output "2.png"
replot
set output
set term pop
其中,"term"是"terminal"的简写,而
set term png
一句正是设置terminal的输出类型,可以直接输入
set term
查看terminal的种类,常用的种类及其输出文件的后缀名对应关系如下:
terminal种类 | 对应后缀名 |
---|---|
fig | .fig |
gif | .gif |
jpeg | .jpg |
latex | .tex |
png | .png |
postscript (可简写为post) | .ps或.eps |
更多推荐
已为社区贡献1条内容
所有评论(0)