help with uicontrol pushbutton

15 次查看(过去 30 天)
Adnan Kantemur
Adnan Kantemur 2018-3-20
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.

回答(1 个)

Gayatri Menon
Gayatri Menon 2018-4-9
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

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by