How do you place values in the cells of a empty table on a GUI?

조회 수: 1 (최근 30일)
I made GUI with a calculate button and a table; I want the results from the calculations to appear on the table. I would gladly appreciate and help, advice or link referral. thanks in advance

채택된 답변

Walter Roberson
Walter Roberson 2013년 6월 4일
set() the 'data' property of the uitable to be a cell array containing the results.
There is no way at the MATLAB level to update only selected cells (there is if you go to the Java level), so you may need to get() the 'data' property in order to determine the current contents before you update it.
  댓글 수: 4
Cordelle
Cordelle 2013년 6월 4일
this is what I think you mean:
set(handles.uitable3,'Data',x)
but when i do this an error message occurs and states:
Undefined variable "handles" or class "handles.uitable3".
Error in GUI1>correctionModelworking1 (line 796) set(handles.uitable3,'Data',x)
Error in GUI1>Calculate1_Callback (line 384) [x, error, stat1, stat2, stat3] = correctionModelworking1(ExPath1,'true',2,'true');
Error in gui_mainfcn (line 96) feval(varargin{:});
Error in GUI1 (line 42) gui_mainfcn(gui_State, varargin{:});
Error in @(hObject,eventdata)GUI1('Calculate1_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating uicontrol Callback
Iain
Iain 2013년 6월 4일
Yes, roughly. You need to make sure that handles.table is the graphics handle to the table. It should have a default name like what you thought it was, but for some reason, it has either been cleared or not been set.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by