【发布时间】:2014-06-25 22:47:37
【问题描述】:
我正在尝试在 (bash heredoc/script for) gnuplot 中进行分段线性拟合。我试过这个:
plot "datafile1" u 1:2:6:7:10:11 with xyerrorbars,\
"datafile1" u 1:4:8:9:10:11 with xyerrorbars,\
"datafile2" u 1:2:3 with xyerrorbars,\
[xmin:xmax] f(x)
但它返回一个无效的表达式错误。任何想法为什么会失败?
注意 - fit [xmin:xmax] f(x) 不返回任何错误消息(所以我认为它有效)。
GNUPLOT 4.4.3
【问题讨论】:
标签: gnuplot curve-fitting