help with uicontrol pushbutton
15 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi there,
I am trying to create a gui without using guide. I have 2 tables and 2 push buttons on my gui panel. 1 table has fix number of row and column. However, number of column for the other table will change with user input(row is fixed to 6). Based on the data in the tables, I will do some calculation whenever user press the "calculate" push button. Problem starts with calculate push button. I got "Undefined function or variable 't'." error, whenever I want to get the data from tables.( t is name of the one table) . I attached my .m file.
0 Commenti
Risposte (1)
Gayatri Menon
il 9 Apr 2018
Hi,
The pushbutton_callback don't have access to 't'.You could find the handle of the table using "findobj" and then use this handle as per your usecase.
function pushbutton_Callback(hObject, eventdata)
h=findobj('Tag','t')
StageParameters=str2double(get(h,'Data'))
PinParameters=str2double(get(h,'Data'))
end
Please refer the below link for more information:
Hope the above helps.
Thanks
0 Commenti
Vedere anche
Categorie
Scopri di più su Interactive Control and Callbacks in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!