how to convert cell to matrix

23 ビュー (過去 30 日間)
Cem SARIKAYA
Cem SARIKAYA 2018 年 12 月 28 日
コメント済み: madhan ravi 2018 年 12 月 29 日
i have 70103x1 cell array but i want to convert this to matrix i want every array open one row. briefly i want to convert this for example 70103x90 how can i do that?
  1 件のコメント
Akira Agata
Akira Agata 2018 年 12 月 28 日
Does each cell contain 1x90 array? If so, cell2mat function works, as:
% 2x1 Sample cell array
C = {rand(1,90),rand(1,90)};
% cell2mat will convert it into 2x90 array
X = cell2mat(C);

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

採用された回答

madhan ravi
madhan ravi 2018 年 12 月 29 日
[yourcellarray{:}]
  2 件のコメント
madhan ravi
madhan ravi 2018 年 12 月 29 日
Cem SARIKAYA's answer moved here for consistency:
thank you this is exactly what i want
madhan ravi
madhan ravi 2018 年 12 月 29 日
Anytime :)

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by