用mathematica如何将RegionPlot画出的图和ListPlot画出...

2025-03-13 10:20:11
推荐回答(1个)
回答1:

谁说不可以的?随手写的一个例子:
a
=
RegionPlot[x^2
+
y^3
<
250,
{x,
-0,
25},
{y,
-0,
25}];
c
=
ListPlot[Prime[Range[25]],
Filling
->
Axis];
Show[a,
c]
你觉得不行,该不会是因为两个图的定义域没重合之类的吧……