using uitable for mixed data

조회 수: 13 (최근 30일)
Stephen Thompson
Stephen Thompson 2017년 1월 13일
댓글: Walter Roberson 2017년 1월 13일
I have a table of mixed type: 'word', 1, 5, 9 [multiple rows]
I want to create a table using uitable and get the error: While setting the 'Data' property of 'Table': Data must be a numeric, logical, or cell array
How do I display mixed data?

채택된 답변

Walter Roberson
Walter Roberson 2017년 1월 13일
data = {'word', 1, 5, 9; 'another', 7, 13, 21};
uitable('Data', data)
What would not be allowed is
data = {{'word', 1, 5, 9}; {'another', 7, 13, 21}}
That is, it is fine to use a cell array, but each entry inside the cell array must be a character vector or a numeric scalar or a logical (the new string data type is not supported either.). You are probably trying to use a cell array that has cell arrays in it.
  댓글 수: 2
Stephen Thompson
Stephen Thompson 2017년 1월 13일
편집: Stephen Thompson 2017년 1월 13일
Indeed I was. I made the text into a character array, then made a cell array of that such that the cell array is of type:
[126x11 char] [126x1 double]
However now:
While setting the 'Data' property of 'Table': Data within a cell array must have size [1 1]
I guess because the dimensions don't match. What would be a valid way to store the text such that the dimensions remain 126X1.
Walter Roberson
Walter Roberson 2017년 1월 13일
You need to break those parts into rows. You can use mat2cell for that
T = cellfun(@(M) mat2cell(M, ones(1, size(M,1)), size(M,2)), ThatCell, 'Uniform', 0);
data = [T{1}, T{2}];

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by