gpt4 book ai didi

gnuplot - 让 GNUPLOT 从 shell 中保存一个图

转载 作者:行者123 更新时间:2023-12-01 04:38:42 28 4
gpt4 key购买 nike

使用某个程序(PersistenceLandscapes 工具箱)我正在生成大量脚本,我从这些脚本中使用 gnuplot 生成绘图。我遍历文件并使用命令 gnuplot gnuplotCommand.txt -p 让 gnuplot 显示绘图。我怎样才能让 gnuplot 以 PNG 或(最好)EPS 格式保存绘图? (我想避免干扰 gnuplotCommand 类型的脚本。)

最佳答案

你可以试试像这样的 bash 脚本

gnuplot <<- EOF
set term png
set output 'gnuplotCommand.txt.png'
load 'gnuplotCommand.txt'
EOF

或者,.eps 版本

gnuplot <<- EOF
set terminal postscript eps
set output 'gnuplotCommand.txt.eps'
load 'gnuplotCommand.txt'
EOF

关于gnuplot - 让 GNUPLOT 从 shell 中保存一个图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34069579/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com