필터 지우기
필터 지우기

Help me please to correct this code

조회 수: 1 (최근 30일)
Carole
Carole 2012년 9월 24일
Hello, I met some difficulties using uitable in GUI especially that this table must extract data from a database. Please how can I modify this code so that the number of rows in the table is dynamic (the number of rows increments based on the number of data in the database)? what should the variables dat and columnformat contain?? knowing that I use matlab 2010. thanks
[i m a] = mym('SELECT * FROM image');
num=mym('SELECT COUNT(*) FROM image');
dat = {??????????};
columnname = {'id', 'Mean', 'Average'};
columnformat = {???????};
t = uitable('Units','normalized','Position',...
[0.1 0.1 0.9 0.9], 'Data', dat,...
'ColumnName', columnname,...
'ColumnFormat', columnformat,...
'RowName',[]);

답변 (1개)

Walter Roberson
Walter Roberson 2012년 9월 24일
Data should be a cell array containing the data to be put into the table. The number of rows and columns are determined by the size of the data provided and not by columnname or the other parameters.
columnformat would depend on the datatype of the data and upon how you want it to look. Often you do not need to provide columnformat as uitable makes reasonable defaults depending on the Data you provide. If you do need to provide it, then columnformat should be a cell array of strings.
  댓글 수: 4
Carole
Carole 2012년 9월 24일
편집: Carole 2012년 9월 24일
thanks but i have the same error
dat =
{2x1 cell} [2x1 double] [2x1 double]
dat =
{2x1 cell} [2x1 double] [2x1 double]
{2x1 cell} [2x1 double] [2x1 double]
??? Error using ==> uitable
Values within a cell array must be numeric, logical, or char
Error in ==> uitable at 56
thandle = builtin('uitable', varargin{:});
Error in ==> diagnostics>diagnostics_OutputFcn at 90
t = uitable('Units','normalized','Position',...
Error in ==> gui_mainfcn at 265
feval(gui_State.gui_OutputFcn, gui_hFigure, [], gui_Handles);
Error in ==> result at 42
gui_mainfcn(gui_State, varargin{:});
Walter Roberson
Walter Roberson 2012년 9월 24일
One implication is that each of your "i" is a cell array. What is in that cell array, and how do you want to represent it in the uitable ?
Meanwhile, try this: after the "for" loop that creates "dat", use
dat = [ vertcat(dat{:,1}), num2cell(cell2mat(dat(:,2:end))) ];
The first part of this might fail, as it depends upon what is inside the cells.

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

카테고리

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