Find the index value of first and last element in the vector ?
25 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Find the index value of first and last element in the vector ?
command
0 Commenti
Risposte (2)
Walter Roberson
il 1 Dic 2013
index_of_first = 1;
index_of_last = length(YourVector);
If you mean an element with a particular value, then
index_of_first = find(YourVector == TheValue, 1, 'first');
index_of_last = find(YourVector == TheValue, 1, 'last');
0 Commenti
Azzi Abdelmalek
il 1 Dic 2013
x=[2 1 0 4 10 20 4 3 1]
[~,idx_first]=min(x)
[~,idx_last]=max(x)
0 Commenti
Vedere anche
Categorie
Scopri di più su Structures 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!