search an array and find the row and column number of a certain element
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ross Anderson
le 2 Nov 2018
Réponse apportée : Fulden Buyukozturk
le 2 Nov 2018
I have an array with a variety of elements. I want to search this array and find the element "P" and assign the column number and row number to variables. How would i go about doing this?
0 commentaires
Réponse acceptée
Fulden Buyukozturk
le 2 Nov 2018
Let's assume you have the following array:
myArray = {'an' 'example' 'p'};
You can use find to obtain indices where the input evaluates to true:
[a,b] = find(strcmp('p', myArray));
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrices and Arrays 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!