博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gnuplot 文件_如何使用gnuplot制作eps文件
阅读量:2518 次
发布时间:2019-05-11

本文共 682 字,大约阅读时间需要 2 分钟。

gnuplot 文件

How to make gnuplot generate eps instead of plot the figures on screen?

如何使gnuplot生成eps 而不是在屏幕上绘制图形?

First, save a Gnuplot plot as a PostScript file by this commands:

首先,通过以下命令将Gnuplot图另存为PostScript文件:

#  gnuplot>   load 'saveplot'#  gnuplot>   !mv my-plot.ps another-file.ps

The saveplot file’s content:

saveplot文件的内容:

set size 1.0, 0.6set terminal postscript portrait enhanced mono dashed lw 1 "Helvetica" 14 set output "my-plot.ps"replotset terminal x11set size 1,1

Then you can convert the ps file to eps file by . On , you can use:

然后,您可以使用将ps文件转换为eps文件。 在 ,您可以使用:

$ ps2epsi another-file.ps another-file.eps
Answered by Eric Z Ma.
埃里克·马(Eric Z Ma)回答。

翻译自:

gnuplot 文件

转载地址:http://uoowd.baihongyu.com/

你可能感兴趣的文章
重置报表输出选择
查看>>
ip代理池抓取qq音乐热歌前300
查看>>
Android面试题集合
查看>>
Android NDK开发
查看>>
Centos中安装和配置vsftp简明教程
查看>>
spring源码学习之AOP(一)
查看>>
AES加密算法动画演示
查看>>
三种方法实现调用Restful接口
查看>>
php第五节(字符串函数和时间、日期函数)
查看>>
magento主页限制某个目录的产品显示数量
查看>>
SpringBoot整合Netty
查看>>
MongoDB数据库的基本操作
查看>>
PAT乙级1014
查看>>
ORACLE wm_concat自定义
查看>>
[Zend PHP5 Cerification] Lectures -- 6. Database and SQL
查看>>
[Drupal] Using the Administrator theme whenever you want.
查看>>
【Hibernate框架】关联映射(一对一关联映射)
查看>>
【算法】大数乘法
查看>>
WPF解析PPT为图片
查看>>
JavaScrict中的断言调试
查看>>