finding the exact location of empty cells

27 ビュー (過去 30 日間)
antonet
antonet 2012 年 7 月 1 日
Dear all,
I have the following cell matrix
clear all
clc
k = cell(2,6)'
k{1} = '7';
k{12} = 3;
To find empty cells I use the usual command
pp=cellfun(@isempty,k)
But I can not "see" the exact position of the empty cells.
For example one empty cell is at the position (1,2)
I tried I=find(pp); and I got as a result the following
2
3
4
5
6
7
8
9
10
11
where I suppose 2 corresponds to (1,2). But this is not very explicit about which positions of the matrix are empty. And in my case I have matrices of huge dimensions
Any help is greatly appreciated

採用された回答

the cyclist
the cyclist 2012 年 7 月 1 日
Use two output arguments for the find() command:
[i,j] = find(pp);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by