Different results using mesh and surf

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

 Accepted Answer

Adam Danz
Adam Danz on 5 Oct 2020
Edited: Adam Danz on 5 Oct 2020
> 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 Comments

Oh, I can't believe I missed that. Thank you for your help!
Sometimes a 2nd pair of eye is all that's needed.

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Products

Release

R2019a

Community Treasure Hunt

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

Start Hunting!