【发布时间】:2023-03-16 22:01:01
【问题描述】:
我知道如何使用 filledcurve 和 using 1:2:3 来填充第 2 列和第 3 列描述的曲线之间的区域。
我也知道如何使用带有using 1:2:(0.1) 的acsplines 来平滑单个曲线(0.1 是每个点的平滑权重)。
但我未能将两者结合起来,即填充两条平滑曲线之间的区域。我尝试的所有变体都会给我错误消息,例如duplicated or contradicting arguments in datafile options。
这是我尝试过的:
plot 'datafile' using 1:2:3:(0.1):(0.1) smooth acs with lines
plot 'datafile' using 1:2:(0.1):3:(0.1) smooth acs with lines
这种组合可能吗?那么语法如何呢?
【问题讨论】:
标签: gnuplot bezier curve spline smoothing