Find index of first nonempty cell in array?
조회 수: 16 (최근 30일)
이전 댓글 표시
Hi,
I have a cell array with values and empty cells. I'd like to return the index of the first empty cell.
For example, for
A = [pizza] [pepperoni] [cheese] [] []
I'd like to return a value of 4.
Thanks!
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2013년 6월 13일
A = {['pizza'] ['pepperoni'] ['cheese'] [] []}
find(cellfun(@isempty,A),1)
댓글 수: 2
Jan
2013년 6월 14일
As usual I mention, that cellfun('isempty', A) is faster.
You do not need square brackets around strings.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!