Produce an eggbox

Dear all, I should produce an eggbox. I tried to use this code, following the instructions, but I did not receive what I needed. Where's the error?
x=[-10:0.2469135802469136:+10]
y=[-10:0.2469135802469136:+10]
[X,Y]= meshgrid(x,y)
M1=sin(X)
M2=sin(Y)
M12=M1*M2
surf(X,Y)
X.^2
Thanks a lot

 採用された回答

bym
bym 2011 年 11 月 9 日

0 投票

The hint explicitly said element-by-element multiplication which is accomplished via
M12 = M1.*M2 % note the use of .*

1 件のコメント

Image Analyst
Image Analyst 2011 年 11 月 10 日
You forgot to tell him to use surf(M12) instead of surf(X, Y);

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

その他の回答 (2 件)

Fangjun Jiang
Fangjun Jiang 2011 年 11 月 9 日

0 投票

Do you mean your last line to be surf(X,Y, X.^2)? It plotted something but I don't know what is an eggbox.

2 件のコメント

Orlando
Orlando 2011 年 11 月 9 日
This is the exercise, and there is also an example of an eggbox.
<http://www.image-upload.net/viewer.php?file=uvu9z4g0endn7vsrubvw.jpg>
<http://www.image-upload.net/viewer.php?file=ommgobtzw9ymdwzo2rq.jpg>
<http://www.image-upload.net/viewer.php?file=i0xmzjlh0hd7yaclqwrz.png>
Thanks a lot
Fangjun Jiang
Fangjun Jiang 2011 年 11 月 10 日
You call the MATLAB logo an egg box? Mr. Little and Mr. Moler will be mad.

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

Image Analyst
Image Analyst 2011 年 11 月 10 日

0 投票

Change the last two lines to
M12 = M1 .* M2
surf(M12)

1 件のコメント

Orlando
Orlando 2011 年 11 月 10 日
Thanks a lot also to you!

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

カテゴリ

ヘルプ センター および File ExchangeSpline Postprocessing についてさらに検索

タグ

質問済み:

2011 年 11 月 9 日

Community Treasure Hunt

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

Start Hunting!

Translated by