How to unpack contents of a cell array?

96 ビュー (過去 30 日間)
Elissa
Elissa 2018 年 4 月 25 日
編集済み: Stephen23 2022 年 2 月 23 日

I have a cell array:

I try to unpack the contents of each cell:

h = size(dom_psth_tb,1);
dom_psth_tb = dom_psth_tb{1:h,1};    

But the result is the contents of only one cell:

Help is much appreciated!

採用された回答

Stephen23
Stephen23 2018 年 4 月 25 日
編集済み: Stephen23 2022 年 2 月 23 日
You can use a comma-separated list, and simply concatenate the contents into one matrix:
mat = vertcat(dom_psth_tb{:})
Read this to know more about comma-separated lists:
  2 件のコメント
Elissa
Elissa 2018 年 4 月 25 日
Thank you!
David Walwark
David Walwark 2018 年 8 月 8 日
The simple solution we all knew existed, thank you.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Types についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by