Effacer les filtres
Effacer les filtres

How to pick next value from vectors based on a condition?

2 vues (au cours des 30 derniers jours)
Evans Gyan
Evans Gyan le 13 Mai 2019
Commenté : Evans Gyan le 14 Mai 2019
Assuming i have a vector
A = [ 7.7 213.1 9.5 227.5 12.5 6.8 100.8 5.3 7.2 99.4]
I want to pick a value that is maximum and is greater or equal to the index 5.
In this case my answer would be 100.8 and is of index 7.
Thanks in advance

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 13 Mai 2019
m = 5;
[value,ii] = max(A(m:end));
index = ii + m - 1;
  2 commentaires
Evans Gyan
Evans Gyan le 13 Mai 2019
Thanks a million.
Evans Gyan
Evans Gyan le 14 Mai 2019
If i want to pick say three highest values from the vector A together with their index, How do i go by it? In this case the values to be selected will be
val = 227.5 213.1 100.8
idx = 4 2 7

Connectez-vous pour commenter.

Plus de réponses (1)

Alex Mcaulley
Alex Mcaulley le 13 Mai 2019

Catégories

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

Translated by