Using find in a 3d matrix in MATLAB.

220 vues (au cours des 30 derniers jours)
felix
felix le 3 Fév 2011
Commenté : Rik le 11 Sep 2017
I have a 3D Matrix such as
QQ=cat(3,w,q)
QQ(:,:,1) =
1 2
3 4
QQ(:,:,2) =
5 6
7 8
now i want to use
[r c]=find(QQ,8) r=max(r) c=max(c)
to find my position for point 8. 'find' just works for 2D arrays .for the 3D case it doesnt work. is there is possibility for 3D arrays?
  2 commentaires
felix
felix le 3 Fév 2011
my goal is to get (2,2,2) or r=2, c=2 and v=2 as answer for point 8.thx in front for helping
Kenneth Eaton
Kenneth Eaton le 3 Fév 2011
I think you have a typo in your code. If you're looking for the position of the value 8, you should do FIND(QQ == 8). The second input to FIND isn't the value you're looking for, it's the *number of indices* to find.

Connectez-vous pour commenter.

Réponse acceptée

Kenneth Eaton
Kenneth Eaton le 3 Fév 2011
When finding values in multidimensional (i.e. greater than 2-D) arrays using the function FIND, it is best to get a single linear index from FIND then convert it to subscripts using the function IND2SUB. Here's how you can find the position of 8 in your 3-D matrix:
[r,c,v] = ind2sub(size(QQ),find(QQ == 8));
  2 commentaires
felix
felix le 3 Fév 2011
thx so much for the fast answer!!=))
Rik
Rik le 11 Sep 2017
I wrote up a function that does this for the general case. It works with the same syntax as the built-in find, but it also supports multidimensional matrices. You can find it on the File Exchange. Then you can simply run:
[r,c,v]=findND(QQ==8);

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by