input command makes figures irresponsive in Matlab R2016a
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Arabarra
am 12 Okt. 2016
Kommentiert: Arabarra
am 24 Nov. 2016
Hi,
I have a major problem with matlab R2016a. As it turns out, while the prompt is executing an "input" command, the figures that have been created before became irresponsive.
If one launches the following piece of code:
function myTest();
localFigure();
input('Now the figure menu will be irresponsive until you press some key! > ', 's');
function localFigure();
h = figure('menubar','none');
hmenu = uimenu(h,'Label','this is a menu');
hsubmenu = uimenu(hmenu,'Label','this is a submenu');
... one sees that while the input prompt is open, clicking on the menu tab (object tagged 'hmenu' in the code) of the created figure does not trigger the submenu (tagged 'hsubmenu').
This is a real problem for my real code. This real code works like a console (effectively an 'input' command inside a 'while/end' loop) where the user types commands that are interpreted by the code to launch different GUIs with different parameters. If previously launched GUIs become disabled while the console (i.e. an input command) is executed, my code is basically useless. Previous releases of Matlab did not present this issue, and my code ran smoothly. Now I am rather puzzled.... any idea on how to overcome this issue?
thanks! Daniel
0 Kommentare
Akzeptierte Antwort
Soma Ardhanareeswaran
am 20 Okt. 2016
Bearbeitet: Soma Ardhanareeswaran
am 20 Okt. 2016
This is a bug in MATLAB R2016a. Please refer to https://www.mathworks.com/support/bugreports/1379371
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!