By default the
f[z_] = ((z^2 - 1)*((z - 2 - I)^2)) / (z^2 + 2 + 2*I)
ComplexPlot3D[f[z], {z, 10}]
will output AbsArg 3d plot (because by default the MeshFunctions -> {Abs[#2] &, Arg[#2] &})
But I want ReIm 3d plot like here https://mathematica.stackexchange.com/a/125633/86077
But there should be easier way
But when I try MeshFunctions -> {Re[#2] &, Im[#2] &} it doesnt work, it still shows AbsArg plot
- WHY?
- How
MeshFunctionswork? how the output is used?





Abs@f[z]orReIm@f[z]?ComplexPlot3Donly plotAbs@f[z]. – cvgmt Apr 15 '22 at 22:22fis a function fromx + y itore + im ithem i wantx yas bottom axis ,reasverticalaxis andimas temperature – srghma Apr 16 '22 at 07:27