How to obtain information from handle structure?
Ältere Kommentare anzeigen
Hi everybody, I have following situation
function outParameters = Main(inParameters)
...
Doing something
...
h = figure(KeyPressFCN,@WhatPressed);
plot(WhatNecessary);
...
function WhatPressed(src, evnt)
switch evnt.Key
case 'a'
...
ProcessedData
case 'b'
...
end
end % of WhatPressed
outParameters = workWith(ProcessedData);
end % of Main
In above version I calculated ProcessedData, but can't pass it into Main program.
What is the simplest way to pass result of calculations from WhatPressed function into Main one?
I know the way how to do this, using GUI with main window and processing of its handle structure and I use it for control of many operations, but in this case I need only to pass a few parameters from WhatPressed function into Main one?
Thanks for constructive ideas
Akzeptierte Antwort
Weitere Antworten (1)
Valeriy
am 21 Jan. 2018
0 Stimmen
1 Kommentar
Walter Roberson
am 21 Jan. 2018
Easier to assign 0 to curfig to isolate the effects. Or use a more meaningful variable name.
Kategorien
Mehr zu Startup and Shutdown 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!