Checking if an array element is larger than the following elements
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
So if I have a large array of form A=[1,5,6,4,12...], is there a consistent way of checking if some element A(n), let's say A(3), is larger than the following ones? So in this case, I would like to find out that A(3)>A(4). Also, then I would like to change those elements in a way that any element A(n) is always equal or larger than any of the elements before it. So again, in this case I would like to change my array A from [1,5,6,4,12...] -> [1,4,4,4,12...] or [1, NaN, NaN,4,12,...].
Thank you.
3 commentaires
Valtteri Tikkanen
le 11 Mai 2017
Modifié(e) : Valtteri Tikkanen
le 11 Mai 2017
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices 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!