循环遍历gnuplot中的常量值

时间:2014-10-09 13:36:55

标签: for-loop gnuplot

我想绘制一个类似的函数:

f(x)= a * exp (-b *x)

在gnuplot上,针对ab的不同值。

是否有可能在gnuplot中使for循环超过常量值?

1 个答案:

答案 0 :(得分:3)

是的,它的工作原理如下:

plot for [a=1:3] for [b=1:3] f(x) title sprintf("a=%d b=%d", a, b)

语法是

for [ variable = start : stop ]

但是,只能以这种方式使用整数值。

以下是上述命令的输出。我使用set log y使其更加明显。

enter image description here