Where is surf() result?

Can't see the plot even in the documentation example:
[X,Y] = meshgrid(-2:.2:2);
Z = X .* exp(-X.^2 - Y.^2);
Then, create a surface plot.
surf(X,Y,Z)

3 Comments

It should work. Maybe type
>> shg
to bring it to the front of the desktop?
Valeri Aronov
Valeri Aronov on 14 Mar 2021
Edited: Valeri Aronov on 14 Mar 2021
Oops. I can see it now after adding ; to the end of the the line with surf command ;-)
Thanks, Matt. Your suggestion works as well.
Matt J
Matt J on 14 Mar 2021
No, the semicolon should have made absolutely no difference ...

Sign in to comment.

Answers (0)

Categories

Find more on Surfaces, Volumes, and Polygons in Help Center and File Exchange

Tags

Asked:

on 14 Mar 2021

Edited:

on 14 Mar 2021

Community Treasure Hunt

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

Start Hunting!