带阴影的线性不等式图
Linear inequality plot with shading
我只想显示一个线性方程 -2x + 7 >= y
,其中直线的一侧带有阴影。我已经尝试了各种 filledcurve
迭代无济于事。这么简单的事情应该不会这么难吧。
请在询问并提供您的(非工作)代码之前进行合理的搜索。你检查过help filledcurves
了吗?到底有什么不清楚的地方?
检查下面的例子:
代码:
### fill area below or above curve
reset session
set grid x,y front
set style fill solid 0.3
f(x) = -2*x+7
plot f(x) w filledcurves x1 lc "red", \
f(x) w filledcurves x2 lc "green", \
f(x) w l
### end of code
结果:
我只想显示一个线性方程 -2x + 7 >= y
,其中直线的一侧带有阴影。我已经尝试了各种 filledcurve
迭代无济于事。这么简单的事情应该不会这么难吧。
请在询问并提供您的(非工作)代码之前进行合理的搜索。你检查过help filledcurves
了吗?到底有什么不清楚的地方?
检查下面的例子:
代码:
### fill area below or above curve
reset session
set grid x,y front
set style fill solid 0.3
f(x) = -2*x+7
plot f(x) w filledcurves x1 lc "red", \
f(x) w filledcurves x2 lc "green", \
f(x) w l
### end of code
结果: