Find index of first nonempty cell in array?
15 ビュー (過去 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!