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일

0 개 추천

> 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개)

카테고리

도움말 센터File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품

릴리스

R2019a

질문:

2020년 10월 5일

댓글:

2020년 10월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by