Maple中具有隐式图的颜色区域

时间:2018-03-09 19:34:09

标签: colors maple

使用包隐式绘图如何为2 * x-y = 4和2 * x + y = 4行下的区域着色。

with(plots,implicitplot): implicitplot([X = 5 / 2,2 * XY = 4,2 * X + Y = 4,3 / 2 * X-2 * Y = 7/4]中,x = 1.5..2.6,Y = 0 .. 1.5);

1 个答案:

答案 0 :(得分:0)

with(plots, implicitplot):

plots:-display(
  implicitplot([2*x-y>4,2*x+y<4],
               x=1.5..2.6,y=0..1.5,filledregions),
  implicitplot([x=5/2,2*x-y=4,2*x+y=4,3/2*x-2*y=7/4],
               x=1.5..2.6,y=0..1.5)

);

enter image description here