Borrar filtros
Borrar filtros

How to force an external figure in live scripts?

446 visualizaciones (últimos 30 días)
Alex
Alex el 13 de Oct. de 2016
Comentada: Walter Roberson el 8 de Mzo. de 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

Respuesta aceptada

Marshall
Marshall el 16 de Dic. de 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 comentarios
Aditya
Aditya el 14 de Feb. de 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
Walter Roberson el 8 de Mzo. de 2024
Chang gao chang gao comments
解决了我的难题
(which approximately translates as "solved my problem")

Iniciar sesión para comentar.

Más respuestas (2)

Pico Technology
Pico Technology el 14 de Oct. de 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.

sunny Yang
sunny Yang el 30 de En. de 2020
Editada: sunny Yang el 30 de En. de 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

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by