Effacer les filtres
Effacer les filtres

Problem with getting output from KeyPressFcn

3 vues (au cours des 30 derniers jours)
yuval
yuval le 9 Fév 2018
Commenté : Adam le 9 Fév 2018
Hello, I have a KeyPressFcn with two input variables and i would like one output variable.
Example of the code:
h = figure
set(h,'KeyPressFcn',{@pushbutton_callback,var1,var2});
function outputVar = pushbutton_callback(src,event,var1,var2)
outputVar = var1*var2;
end
The problem is that outputVar doesn't exist in the workspace afterwards...
I've read the documentation but still as it appears didn't really understand how to work with this function.
Thanks in advance.
  1 commentaire
Adam
Adam le 9 Fév 2018
Callbacks cannot define output arguments. You will need to save your value using e.g. guidata:
function pushbutton_callback(src,event,var1,var2)
hGUIData = guidata( src );
hGUIData.outputVar = var1*var2;
guidata( src, hGUIData );
end
Then it can be accessed via
hGUIData = guidata( h )
hGUIData.outputVar

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by