Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一部のセルが空で、一部が数字で、一部が文字列と文字であるセル配列があります。どれが空かを調べたいのですが、次の式の二重ループよりも良い方法はありますか?
isempty(cell_array{i,j})
はいあります:
emptyList = cellfun(@isempty, yourCellArrayHere);
よりコンパクトで、Matlab のようなスタイルです。for実際には、ループの JIT 最適化により、高速であるとは限りません。
for