Drawing a 3-D graph, endpoint issues

Hello everyone,
I asked a question similar to this under the subject of linspace but I am re-posting it because this time I wanted to attach the photos. So that you can see clearly what my issue is.
The black/white graph(3dd.jpg) is what I am trying to draw and the graph in color(3d.jpg) is what I have drawn. I am not sure what I must modify to be able to successfully draw the black/white graph(3dd.jpg). I tried modifying the linspace values but I still couldn't achieve my goal.
Following is my code,
x=linspace(-2,2);
y=linspace(-2,2);
[X,Y] = meshgrid(x,y);
Z=(X.^2+3*Y.^2)*exp(-X.^2-Y.^2);
meshz(X,Y,Z)
Thank you very much.

 採用された回答

Star Strider
Star Strider 2016 年 5 月 8 日

0 投票

Please clarify what you want.
This code:
x=linspace(-2,2);
y=linspace(-2,2);
[X,Y] = meshgrid(x,y);
Z=(X.^2+3*Y.^2).*exp(-X.^2-Y.^2);
meshz(X,Y,Z)
produces this plot:

4 件のコメント

verzhen Ligai
verzhen Ligai 2016 年 5 月 8 日
Oh wow, how come when I ran it, I got a different result? my result was as shown in the picture.
verzhen Ligai
verzhen Ligai 2016 年 5 月 8 日
verzhen Ligai
verzhen Ligai 2016 年 5 月 8 日
Nope! I realized what I did wrong! Thank you so much!!!!!
Star Strider
Star Strider 2016 年 5 月 8 日
My pleasure!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by