Produce an eggbox
Afficher commentaires plus anciens
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
Réponse acceptée
Plus de réponses (2)
Fangjun Jiang
le 9 Nov 2011
0 votes
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 commentaires
Orlando
le 9 Nov 2011
Fangjun Jiang
le 10 Nov 2011
You call the MATLAB logo an egg box? Mr. Little and Mr. Moler will be mad.
Image Analyst
le 10 Nov 2011
Change the last two lines to
M12 = M1 .* M2
surf(M12)
1 commentaire
Orlando
le 10 Nov 2011
Catégories
En savoir plus sur Spline Postprocessing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!