check for decrease and increase
Afficher commentaires plus anciens
i have a matrix and check for a column to see if the values are rapidly decreasing in steps of five. how to check for it? for example the matrix is x and the second column.
Réponse acceptée
Plus de réponses (3)
madhan ravi
le 5 Nov 2018
Modifié(e) : madhan ravi
le 5 Nov 2018
x=[100:-5:0] %an example
issorted(x,'strictdescend') %to check if they are sorted
abs(diff(x))==5
Image Analyst
le 5 Nov 2018
Modifié(e) : Image Analyst
le 23 Nov 2021
1 vote
Try the function findchangepts(), in versions of MATLAB r2016a and later.
Palnati saidatta
le 23 Nov 2021
0 votes
x=[100:-5:0] %an example
issorted(x,'strictdescend') %to check if they are sorted
abs(diff(x))==5
1 commentaire
Image Analyst
le 23 Nov 2021
Catégories
En savoir plus sur Transforms dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!