Mathematica基础——RegionPlot的用法(1)
1、 RegionPlot[不等式,{x,xmin,xmax},{y,ymin,ymax}——作出“不等式”代表的区域. 举个例子,作出不等式x^2 + y^3 < 2&&-2<x,y<2所代表的区域:RegionPlot[x^2 + y^3 < 2, {x, -2, 2}, {y, -2, 2}]

3、 改变区域边界的颜色:RegionPlot[x^2 + y^3 < 2, {x, -2, 2}, {y, -2, 2},BoundaryStyle ->Red,PlotStyle->Green]

5、 画出不等式组代表的区域:RegionPlot[x^2 + y^3 < 2 && x + y < 1, {x, -2, 2}, {y, -2, 2}]RegionPlot[x^2 + y^3 < 2 && x + y > 1, {x, -2, 2}, {y, -2, 2}]

6、 画出sinx*siny>0.2代表的区域:RegionPlot[Sin[x] Sin[y] >0.2, {x, -10, 10}, {y, -10, 10}, BoundaryStyle -> Dashed, PlotStyle -> Red]
