Concatenate cells: making column and row headers

4 ビュー (過去 30 日間)
Mich
Mich 2012 年 12 月 17 日
Hi,
I have a column and a row like this:
col={'cat1'; 'cat2'; 'cat3'}
row={'mouse1' 'mouse2' 'mouse3'}
I would like to make these as column and row headers (eventually for a table) like this such that my table looks like this:
I've attempted to use cat such that:
table=cat(2,col,row)
but it results in an error the dimensions are not consistent..
Thank you so much for your help and please let me know if I am not clear.
  2 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 12 月 17 日
Your image is invisible
Mich
Mich 2012 年 12 月 17 日
Oh! that is weird, here is the link: http://imgur.com/y0wyb I'm sorry!

サインインしてコメントする。

採用された回答

Pedro Villena
Pedro Villena 2012 年 12 月 17 日
table(2:numel(row)+1) = row;
table(2:numel(col)+1,1) = col;
  1 件のコメント
Mich
Mich 2012 年 12 月 17 日
編集済み: Mich 2012 年 12 月 17 日
That's it! The way that gave me the exact result was:
table(1:numel(row))=row;
table(1:numel(col),1)=col;
Thank you so much!! And to all the helpers, you are awesome!

サインインしてコメントする。

その他の回答 (2 件)

Honglei Chen
Honglei Chen 2012 年 12 月 17 日
table(2:4) = row;
table(2:4,1) = col;
  2 件のコメント
Mich
Mich 2012 年 12 月 17 日
Unfortunately i get a dimension mismatch error as well. I tried the method under Azzi's comment because with my real dataset I would not know the if it actually ended on the 4th row. Perhaps I am looking for something more like:
table={}
table(2:size(row,2))=row;
table(2:size(col,1),1)=col;
But I get a dimension mismatch.. Thank you for your response!!
Honglei Chen
Honglei Chen 2012 年 12 月 17 日
The code below works fine for me. If you get an error, you may need to make sure that your variable, table, is not defined previously with other dimensions. If that still didn't work out, please post your example with the error message.
>> col = {'a','b','c'}
col =
'a' 'b' 'c'
>> row = {'d','e','f'}
row =
'd' 'e' 'f'
>> table(2:numel(row)+1) = row
table =
[] 'd' 'e' 'f'
>> table(2:numel(col)+1,1) = col
table =
[] 'd' 'e' 'f'
'a' [] [] []
'b' [] [] []
'c' [] [] []

サインインしてコメントする。


Matt Fig
Matt Fig 2012 年 12 月 17 日
編集済み: Matt Fig 2012 年 12 月 17 日
row={'cat1'; 'cat2'; 'cat3'};
col={'mouse1' 'mouse2' 'mouse3'};
figure
t = uitable('Data',[],...
'ColumnName',col,...
'RowName',row,...
'Position',[20 20 360 100])

カテゴリ

Help Center および File ExchangeGraphics Object Programming についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by