Subplotting by using MATLAB GUI
16 次查看(过去 30 天)
显示 更早的评论
Hi everyone,
I want to use plot and subplot functions just like in command window. I mean, i want to see my subplot output as a new figure not in GUI screen.
Thanks to everybody, have a nice day.
0 个评论
采纳的回答
Star Strider
2015-5-24
I don’t have your code, but if you want a plot in a new figure window, precede the plot call with a figure call:
figure(1)
subplot(2,1,1)
plot( ...)
subplot(2,1,2)
plot
The numbers in the figure call are not absolutely necessary, but since MATLAB will put all subsequent plots in the existing figure window if you do not create a new figure window each time, it helps to keep track of them.
0 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Subplots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!