How to force an external figure in live scripts?
479 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Alex
am 13 Okt. 2016
Kommentiert: Walter Roberson
am 8 Mär. 2024
I recently got R2016b and have been using live scripts. It is interesting how outputs are capable of being embedded inline (or to the right of) the code, but find it cumbersome to work with while debugging. For example, below is a picture of a simple live script with both a graph and text being printed.
Is it possible to force live scripts to behave like standard scripts in terms of output? So, the figure would start as its own window and the text printed to the command window?
If you hover over the figure, it has an option to "Open in figure window" but I would prefer a programmatic way to accomplish this, so I don't have to do this every time.
I realize I could just go back to standard scripts, but like the ability to put headings, text, and equations inline with the code. In other words, can I disable the live script output behavior while keeping all of its other benefits?
Thanks
0 Kommentare
Akzeptierte Antwort
Marshall
am 16 Dez. 2016
Use the following command:
set(gcf,'Visible','on')
Neither select and F9, nor the Run command work for me because highlighting large sections to run F9 is tedious, and the Run command doesn't create the figure in a standard figure window. In addition, if I run more plot commands on those figures outside of the live script, then the figure window remains hidden, and I don't see those changes. This way shows the figure window, and saves the figure result with the live script.
clc;
clear;
close all;
x=(0:0.01:2*pi)';
y=sin(x);
fprintf('\nPrinting graph...');
figure;
set(gcf,'Visible','on')
plot(x,y);
fprintf('done.');
5 Kommentare
Aditya
am 14 Feb. 2023
Minor point, for anyone coming here with a handle to figure, something like this:
f = figure;
You will need to set f and not gcf to get expected behaviour. Do something like this
set(f, 'Visible', 'on');
Walter Roberson
am 8 Mär. 2024
Weitere Antworten (2)
Pico Technology
am 14 Okt. 2016
Hi Alex,
I've found that you can select the live script in the MATLAB Current Folder view and select F9 to run it as a script or right-click and select Run.
Hope this helps.
0 Kommentare
sunny Yang
am 30 Jan. 2020
Bearbeitet: sunny Yang
am 30 Jan. 2020
% Tested on Matlab 2019B,got the pop window and correct handle
% Mechanism:timers runs independently
function fig = ForcePopupFigure()
global NewFig;
tim = timer('TimerFcn',@temp,'ExecutionMode','singleShot');
tim.start();
pause(0.5);
fig = NewFig;
NewFig.Visible = 'on';
delete(tim);
end
function temp(~,~,~)
global NewFig;
NewFig = figure;
end
0 Kommentare
Siehe auch
Kategorien
Mehr zu Interactive Control and Callbacks finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!