Effacer les filtres
Effacer les filtres

i used find command to locate the position for a particular number. it just mentions the position. how to find the corresponding row and column of the number

1 vue (au cours des 30 derniers jours)
i used find command to locate the position for a particular number. it just mentions the position. how to find the corresponding row and column of the number a=[21 22 23;24 28 25;26 28 27]; i would like to know the row and column for number 28...

Réponse acceptée

the cyclist
the cyclist le 4 Juil 2013
Modifié(e) : the cyclist le 4 Juil 2013
Use find() with two output arguments
[i,j] = find(a==28)
as described in the documentation
>> doc find

Plus de réponses (0)

Catégories

En savoir plus sur Startup and Shutdown dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by