Vol*_*orm 3 wolfram-mathematica
我想看一些依赖于参数n的函数的实部和虚部.独立(与正的设定值),我得到完美漂亮的图形,但在操纵时,把他们,他们变得非常小.
这是我正在使用的确切代码; 删除操作和图形显示的大小,但有了它,它们太小,不易清晰.
Manipulate[
Plot3D[Im[Sqrt[-1 + (x + I y)^2 n]], {x, -2, 2}, {y, -1, 1},
AxesLabel -> Automatic]
Plot3D[Re[Sqrt[-1 + (x + I y)^2 n]], {x, -2, 2}, {y, -2, 2},
AxesLabel -> Automatic]
, {n, 1, 10, 1}]
Run Code Online (Sandbox Code Playgroud)
为什么这样做,我该如何解决?
Manipulate[
Row[{
Plot3D[Im[Sqrt[-1 + (x + I y)^2 n]], {x, -2, 2}, {y, -1, 1},
AxesLabel -> Automatic, ImageSize -> 300] ,
Plot3D[Re[Sqrt[-1 + (x + I y)^2 n]], {x, -2, 2}, {y, -2, 2},
AxesLabel -> Automatic, ImageSize -> 300]}],
{n, 1, 10, 1}]
Run Code Online (Sandbox Code Playgroud)

编辑
请记住,您可能还会执行以下操作:
a = Sequence @@{{x, -2, 2}, {y, -1, 1}, AxesLabel-> Automatic, ImageSize-> 200};
Manipulate[
Row[{
Plot3D[Im[Sqrt[-1 + (x + I y)^2 n]], Evaluate@a],
Plot3D[Re[Sqrt[-1 + (x + I y)^2 n]], Evaluate@a]}],
{n, 1, 10, 1},
PreserveImageOptions -> False]
Run Code Online (Sandbox Code Playgroud)