Initialising Graphs from Live Script

2 次查看(过去 30 天)
Is there a method for initializing the plot window in a live script?
Current I initialise a figure in the cmd window like so:
figure(1)
The from my live script plot
figure(1)
plot(someData)
This will plot someData in the figure window rather than live script output, great, but it's a bit clunky and kind of irritating to do everytime I hit run.
  3 个评论
James Owen
James Owen 2020-3-3
You can get the figure to pop-out of the Live Editor in its own window by setting its "Visibible" property to 'on'. For example:
plot(1:10)
set(gcf,'Visible','on')

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by