我正在编写一个脚本来一次从多个文件中绘制多个文件。我还想保存与数据文件相对应的每个绘图的输出。我们如何将这两个参数都提供给 GNUPlot。例如:示例 GNUPlot 脚本
set xlabel "a"
set ylabel "b"
set zlabel "c"
set term postscript
set output "??" #'??' implies variable i.e. take file name from commandline
splot "??" with points,"??" with points #'??' implies variable i.e. take file name from commandline
该脚本将由另一个生成所需文件名的 shell 脚本运行。
任何帮助表示赞赏。