How can I have different 3D and 2D plot at the same time?
8 次查看(过去 30 天)
显示 更早的评论
I have a large program with many loops.I have many graphs in 2D and 3D modes which are coded by plot() and plot3() functions at the same time. I don't want to deactivate all plot and plot3 function except one in order to get result from just that one plot and repeat it for other plots. I want to have all plot and plot3 graphs in different windows at the same time with just one run. I don't know how to do this.
Note: Matlab put all graphs in just one window and this is bad for me,because there is no relation between my graphs though they are all in one program.
0 个评论
回答(1 个)
Walter Roberson
2013-4-26
You should look at figure() and subplot(). And you should read the guidance I wrote in http://www.mathworks.co.uk/matlabcentral/answers/22208-show-figure#comment_48401
2 个评论
Walter Roberson
2013-4-26
Yes, they do.
There is a limitation that all subplot() on the same figure must use the same colormap (if they are using pseudocolor, which is the default for surfaces). Different figure() can have different colormap.
In MATLAB, a figure() is the same thing as a window.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!