The size of nested cells

1 回表示 (過去 30 日間)
Amir Mahmoudi
Amir Mahmoudi 2024 年 10 月 1 日
コメント済み: Amir Mahmoudi 2024 年 10 月 1 日
I have a cell array. Each cell contains an n by m cell. How can I get "m"?

採用された回答

Manish
Manish 2024 年 10 月 1 日
Hi Amir,
I understand that you want to find the value of ‘m’ in a n*m cell array.
Here the code implementation to find the value of m:
CellArray = {
{1, 2, 3; 4, 5, 6},
{7, 8, 9; 10, 11, 12}
};
% Access the first inner cell array
innerCellArray = CellArray{1};
% Get the size of the inner cell array
[~, m] = size(innerCellArray);
% Display the value of m
disp(m);
Hope this helps!
  1 件のコメント
Amir Mahmoudi
Amir Mahmoudi 2024 年 10 月 1 日
Thanks

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by