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!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by