How to learnt matrix element index...

1 vue (au cours des 30 derniers jours)
Atakan
Atakan le 31 Mar 2011
for ex; I have matrix written below.
10 11 12
13 14 15
4 5 6
45 55 65
Is there any comment or function to retrieve index of element...
for example I want to learn index of 5,function should give me an ans=(3,2)
...
  1 commentaire
Jan
Jan le 31 Mar 2011
This is a very basic question. Please read the "Getting Started" chapters of the documentation.

Connectez-vous pour commenter.

Réponses (1)

Paulo Silva
Paulo Silva le 31 Mar 2011
m=[10 11 12
13 14 15
4 5 6
45 55 65]
[r,c]=find(m==5)

Catégories

En savoir plus sur Matrix Indexing 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