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.

 Akzeptierte Antwort

KSSV
KSSV am 5 Nov. 2018

0 Stimmen

Read about diff. This will get the difference of successive rows. If decreasing diff would be negative, if increasing diff will be positive.

Weitere Antworten (3)

madhan ravi
madhan ravi am 5 Nov. 2018
Bearbeitet: madhan ravi am 5 Nov. 2018

1 Stimme

x=[100:-5:0] %an example
issorted(x,'strictdescend') %to check if they are sorted
abs(diff(x))==5
Image Analyst
Image Analyst am 5 Nov. 2018
Bearbeitet: Image Analyst am 23 Nov. 2021

1 Stimme

Try the function findchangepts(), in versions of MATLAB r2016a and later.
Palnati saidatta
Palnati saidatta am 23 Nov. 2021

0 Stimmen

x=[100:-5:0] %an example
issorted(x,'strictdescend') %to check if they are sorted
abs(diff(x))==5

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by