level 1
代码为
RegionPlot[{y < 0.5 x + 3, y >= x^2}, {x, -3, 3}, {y, -1, 5},
BoundaryStyle -> Dashed, Frame -> False, AxesOrigin -> True,
Axes -> True, AxesLabel -> Automatic]
2023年03月21日 07点03分
3
吧务
level 12
用ContourPlot画边界,再Show到一起就可以了
Show[
RegionPlot[{y < 0.5 x + 3, y >= x^2}, {x, -3, 3}, {y, -1, 5},
BoundaryStyle -> None, Frame -> False, AxesOrigin -> True,
Axes -> True, AxesLabel -> Automatic],
ContourPlot[{y == 0.5 x + 3, y == x^2}, {x, -3, 3}, {y, -1, 5},
ContourStyle -> {Dashed, Automatic}]
]
2023年03月25日 08点03分
4