check for decrease and increase
Mostra commenti meno recenti
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.
Risposta accettata
Più risposte (3)
madhan ravi
il 5 Nov 2018
Modificato: madhan ravi
il 5 Nov 2018
x=[100:-5:0] %an example
issorted(x,'strictdescend') %to check if they are sorted
abs(diff(x))==5
Image Analyst
il 5 Nov 2018
Modificato: Image Analyst
il 23 Nov 2021
1 voto
Try the function findchangepts(), in versions of MATLAB r2016a and later.
Palnati saidatta
il 23 Nov 2021
0 voti
x=[100:-5:0] %an example
issorted(x,'strictdescend') %to check if they are sorted
abs(diff(x))==5
1 Commento
Image Analyst
il 23 Nov 2021
Categorie
Scopri di più su Transforms in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!