为 Gnuplot 制作批处理文件

为 Gnuplot 制作批处理文件

如何使用一系列 Gnuplot 命令创建批处理文件,然后在 Gnuplot 中执行它?例如:定义一个函数,设置 x 轴和 y 轴设置,设置一个输出,这样当我运行 Gnuplot 并执行此文件时,我立即得到了我的图表。提前感谢您的阅读。

答案1

以下摘录自http://people.duke.edu/~hpgavin/gnuplot.html

6.脚本文件

有时,需要输入多个命令来创建特定的绘图,输入命令时很容易出现拼写错误。为了简化绘图操作,可以将多个 Gnuplot 命令组合成一个脚本文件。例如,以下文件将创建力-偏转数据的自定义显示:

  # Gnuplot script file for plotting data in file "force.dat"
  # This file is called   force.p
  set   autoscale                        # scale axes automatically
  unset log                              # remove any log-scaling
  unset label                            # remove any previous labels
  set xtic auto                          # set xtics automatically
  set ytic auto                          # set ytics automatically
  set title "Force Deflection Data for a Beam and a Column"
  set xlabel "Deflection (meters)"
  set ylabel "Force (kN)"
  set key 0.01,100
  set label "Yield Point" at 0.003,260
  set arrow from 0.0028,250 to 0.003,280
  set xr [0.0:0.022]
  set yr [0:325]
  plot    "force.dat" using 1:2 title 'Column' with linespoints , \
        "force.dat" using 1:3 title 'Beam' with points

然后可以使用以下命令生成总体图:gnuplot> load 'force.p'

该文件force.dat看起来像这样:

  # This file is called   force.dat
  # Force-Deflection data for a beam and a bar
  # Deflection    Col-Force       Beam-Force 
  0.000              0              0    
  0.001            104             51
  0.002            202            101
  0.003            298            148
  0.0031           290            149
  0.004            289            201
  0.0041           291            209
  0.005            310            250
  0.010            311            260
  0.020            280            240

请查看来源以获得更多信息和更好的解释。

相关内容