bash – 如何将gnuplot输出文件定义为变量?
发布时间:2020-12-15 22:02:48 所属栏目:安全 来源:网络整理
导读:在我的bash文件中,我有这个声明: gnuplot -e "filename='Traffic1'" MyplotFile 现在我想通过Traffic1或更好的方式将filename的值称为我的gnuplot输出文件的名称,该文件是png格式. 我在MyplotFile上有这些行: set output 'filename.png' 但输出是filename.
在我的bash文件中,我有这个声明:
gnuplot -e "filename='Traffic1'" MyplotFile 现在我想通过Traffic1或更好的方式将filename的值称为我的gnuplot输出文件的名称,该文件是png格式. 我在MyplotFile上有这些行: set output 'filename.png' 但输出是filename.png!我希望将Traffic1.png作为输出.如何正确定义此行: set output 'filename.png' 附:如果您需要了解-e,请转到此link 解决方法
使用’filename.png’,您只需定义一个字符串. gnuplot应该怎么知道,你的意思是变量?
您可以将变量与扩展字符串连接起来 set output filename . '.png' 或者你可以使用sprintf: set output sprintf('%s.png',filename) (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |