How to change a plot form 2D to 3D
6 views (last 30 days)
Show older comments
Hello, I have a plot that I did using the function "pcolor", that is pcolor(X,Y,C). Now I would like to plot the same data in 3D, using "surf". The problem is that I do not have the source data anymore. I just have the .fig file. Is it possible to plot it in 3D directly from my 2D figure? Thank you very much in advance. Best regards, Araceli
0 Comments
Answers (1)
Walter Roberson
on 28 Dec 2017
Open the fig file. If there are multiple plot axes then click on the one that has the pcolor display (if there is only one plot axes you should be able to skip that.) Now at the command line,
view(3)
and you should see the surface.
pcolor is really just calls to surface() followed by a call to view() and turning the axes box on, so all you have to do to see it in 3d is change the view.
0 Comments
See Also
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!