How could I continue working on source files while code running and generating figures?
Ältere Kommentare anzeigen
Hi,
I'm using Matlab 2014a. With an older version of Matlab (2010a, I think), I was able to continue working with editor on source files while the program was processing, running previous saved code and generating figures that go on the task bar of Windows 7. Now, I still can access to the editor but barely unable to do anything because figures generated allways popup. Is there a trick, a parameter to change, in Matlab, in Windows?
Thanks,
Yves
Akzeptierte Antwort
Weitere Antworten (1)
Sean de Wolski
am 25 Feb. 2015
Create invisible figures so that they don't come up. Then when you're ready to see the figures, turn them all to visible
% Create invisible figure
fig = figure('visible','off');
surf(peaks)
Turn all to visible
set(findall(0,'type','figure'),'visible','on')
1 Kommentar
Yves St-Onge
am 25 Feb. 2015
Kategorien
Mehr zu Creating, Deleting, and Querying Graphics Objects finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!