Different results using mesh and surf

2 次查看(过去 30 天)
I'm trying to graph the function xye^(-(x.^2+y.^2)), and I used both surf and mesh to do so. Below is the code. The problem is the two graphs are different. The surf function seems to have gotten it correct, but the mesh function looks like it graphed the absolute value of the function. Why is there this difference?
clear
clc
r=100;
x1 = linspace(-10,10,r);
y2 = linspace(-10,10,r);
[x,y] = meshgrid(x1,y2);
z=x.*y.*exp(-(x.^2+y.^2));
figure
surf(x,y,z)
xlabel('x');
ylabel('y');
zlabel('z');
grid on
shading interp
colorbar
figure
mesh(x,y,z.^2)
xlabel('x');
ylabel('y');
zlabel('z');
grid on

采纳的回答

Adam Danz
Adam Danz 2020-10-5
编辑:Adam Danz 2020-10-5
> The problem is the two graphs are different. The surf function seems to have gotten it correct, but the mesh function looks like it graphed the absolute value of the function
Hint
mesh(x,y,z.^2)
% ^^^
Also see the difference in the z-axis values. The range of z values in the mesh version is not the absolute value of the z values in the surf version, it's squared (which forces negative values to be positive).
  2 个评论
Nathan Shapiro
Nathan Shapiro 2020-10-5
Oh, I can't believe I missed that. Thank you for your help!
Adam Danz
Adam Danz 2020-10-5
Sometimes a 2nd pair of eye is all that's needed.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

产品


版本

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by