How to concatenate all these cells vertically?

2 ビュー (過去 30 日間)
CalebJones
CalebJones 2019 年 11 月 12 日
編集済み: CalebJones 2019 年 11 月 12 日
I have attached the file below. I'm unable to concatenate these cells verically.
  2 件のコメント
Bhaskar R
Bhaskar R 2019 年 11 月 12 日
Your data is table data stored as structure->cell->table.
Cell data arranged in horizantally(row matrix) if you want that data to vertical(column maxtrix) apply transpose
cell_data = S.result;
vertical_data = cell_data';
CalebJones
CalebJones 2019 年 11 月 12 日
編集済み: CalebJones 2019 年 11 月 12 日
Bhaskar R, doesn't do what i want it to do. What I mean by that is, I want all the values from the structure->cell->table to be in one table.

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

採用された回答

Stephen23
Stephen23 2019 年 11 月 12 日
編集済み: Stephen23 2019 年 11 月 12 日
>> load('matlab.mat')
>> R = S.result;
>> T = vertcat(R{:});
>> whos T
Name Size Bytes Class Attributes
T 41392x2 374716 table
To know how it works:
  2 件のコメント
Rik
Rik 2019 年 11 月 12 日
I was just about to write an answer with cat(1,R{:}), forgetting that it would call vertcat internally.
CalebJones
CalebJones 2019 年 11 月 12 日
編集済み: CalebJones 2019 年 11 月 12 日
does this mess up the order by any chance?Stephen Cobeldick

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by