check for decrease and increase
42 views (last 30 days)
Show older comments
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.
0 Comments
Accepted Answer
KSSV
on 5 Nov 2018
Read about diff. This will get the difference of successive rows. If decreasing diff would be negative, if increasing diff will be positive.
0 Comments
More Answers (3)
madhan ravi
on 5 Nov 2018
Edited: madhan ravi
on 5 Nov 2018
x=[100:-5:0] %an example
issorted(x,'strictdescend') %to check if they are sorted
abs(diff(x))==5
0 Comments
Image Analyst
on 5 Nov 2018
Edited: Image Analyst
on 23 Nov 2021
Try the function findchangepts(), in versions of MATLAB r2016a and later.
0 Comments
Palnati saidatta
on 23 Nov 2021
x=[100:-5:0] %an example
issorted(x,'strictdescend') %to check if they are sorted
abs(diff(x))==5
1 Comment
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!