How could I continue working on source files while code running and generating figures?
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (1)
Sean de Wolski
el 25 de Feb. de 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 comentario
Yves St-Onge
el 25 de Feb. de 2015
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!