在Gnuplot中填充这两条曲线之间的空间

在Gnuplot中填充这两条曲线之间的空间,plot,gnuplot,Plot,Gnuplot,代码 我得到 这是错误的。 参数选择一定是错误的,尽管它似乎有效 如何覆盖两个图形之间的空间?两条曲线之间的填充仅适用于数据。要将其用于函数,必须使用特殊文件名+: set xrange [2014:2050]; set yrange [80:110]; set terminal qt size 560,270; set grid; set offset 1,1,0,0; inc(x) = 0.439 * x - 800.65; re(x) = 1.0025 * 83.3 * 1.00

代码

我得到

这是错误的。 参数选择一定是错误的,尽管它似乎有效


如何覆盖两个图形之间的空间?

两条曲线之间的填充仅适用于数据。要将其用于函数,必须使用特殊文件名
+

set xrange [2014:2050]; set yrange [80:110]; 
set terminal qt size 560,270; set grid; 
set offset 1,1,0,0; 
inc(x) = 0.439 * x - 800.65; 
re(x) = 1.0025 * 83.3 * 1.005**(-2014 + x); 
plot re(x) w filledcurves, inc(x) w filledcurves;

set xrange [2014:2050]; set yrange [80:110]; 
set grid; 
set offset 1,1,0,0; 
inc(x) = 0.439 * x - 800.65; 
re(x) = 1.0025 * 83.3 * 1.005**(-2014 + x); 
plot '+' using 1:(re($1)):(inc($1)) w filledcurves