count number of elements in a cell
조회 수: 84 (최근 30일)
이전 댓글 표시
say I have x={'zyryan';'zythem';'zythia';'zythum';'zyzomys'}
how would I count the number of elements in x. There are 5 words in x so I would like the output to be 1
댓글 수: 1
Stephen23
2015년 11월 11일
Your example vector x has five elements (five cells), so where do you get the value 1 from?
채택된 답변
Star Strider
2015년 11월 11일
I have no idea what result you want, but the size function will work:
x={'zyryan';'zythem';'zythia';'zythum';'zyzomys'};
sz_x = size(x)
sz_x =
5 1
추가 답변 (1개)
Stephen23
2015년 11월 11일
>> x={'zyryan';'zythem';'zythia';'zythum';'zyzomys'};
>> numel(x)
ans = 5
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!