Pass variables into set(frt,'WindowButtonDownFcn',@mousePos)
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Quick question, how can i pass some other variables that i want in mousePos
function mousePos(hObject,~)
mPos=get(hObject,'CurrentPoint');
finalPos(mPos,data)
The data variable is defined in the main function but i want to use it here too.
0 Commenti
Risposta accettata
Walter Roberson
il 15 Lug 2012
Modificato: Walter Roberson
il 15 Lug 2012
set(frt, 'WindowButtonDownFcn', {@mousePos, data} )
and
function mousePos(hObject, ~, data)
Note: this will use the value of "data" as of the time the callback is created, and will not reflect any updates to "data" that are made after that.
3 Commenti
Più risposte (1)
Xiangqi
il 27 Ago 2013
To Raldi,
Hi~ Have you found the way to update the value of "data" ?
I encountered the same problem and don't know how to update it.
Thanks for your help in advance.
Huang
0 Commenti
Vedere anche
Categorie
Scopri di più su Other Formats in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!