Effacer les filtres
Effacer les filtres

finding the exact location of empty cells

12 vues (au cours des 30 derniers jours)
antonet
antonet le 1 Juil 2012
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

Réponse acceptée

the cyclist
the cyclist le 1 Juil 2012
Use two output arguments for the find() command:
[i,j] = find(pp);

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by