Find the index value
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Silpa K
il 6 Ott 2019
Commentato: KALYAN ACHARJYA
il 13 Ott 2019
I have a an array.I need to find its index value.How can i do that?
1 Commento
Risposta accettata
KALYAN ACHARJYA
il 6 Ott 2019
Modificato: KALYAN ACHARJYA
il 6 Ott 2019
>> array_data=2:3:30
array_data =
2 5 8 11 14 17 20 23 26 29
Case 1: I assumed you are looking for index value of specific element in the array, say 17
idx=find(array_data==17)
Case 2: for all array Elements
idx=1:length(array_data)
Hope it helps!
10 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Indexing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!