フィルターのクリア

How to Unnest Nested cell arrays

17 ビュー (過去 30 日間)
xander fong
xander fong 2015 年 7 月 29 日
編集済み: Stephen23 2015 年 7 月 29 日
Hello, I have a 17x300 cell array, some of which contain text and numbers. However, the 17th column is filled with 1x1 cell arrays with a number inside. How do I unnest these unnested cells?
  1 件のコメント
Stephen23
Stephen23 2015 年 7 月 29 日
編集済み: Stephen23 2015 年 7 月 29 日
In MATLAB, like in all mathematics, the first dimension is always the rows, and the second dimension is the columns. So your "17x300" means seventeen rows and three hundred columns... yet your question is about the "17th column", which implies that you meant the size to be 300*17 (three hundred rows and seventeen columns).

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

採用された回答

Stephen23
Stephen23 2015 年 7 月 29 日
編集済み: Stephen23 2015 年 7 月 29 日
Given your array X:
X(:,17) = vertcat(X{:,17});
Note that this will only work if all of the cells in that column contain cell arrays. It will cause an error if any cell in the column contains any other data type.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by