How to test montonousness of X Y data

1 visualización (últimos 30 días)
Pappu Murthy
Pappu Murthy el 6 de En. de 2022
Respondida: Rik el 6 de En. de 2022
I have sets of XY data with anywhere from 1 to 10 elements in it. I need to check whether x vs y is montonously increasing or not. Even if one element is out of montony then I consider the data failed to test. What is the quickest way to check this. I need to perform this on 100s of sets of XY data with verying sizes. Thanks in advance.

Respuesta aceptada

Rik
Rik el 6 de En. de 2022
I would sort x, use the second output of sort to change the order of the y elements. That reduces the problem to the question whether there are any values smaller than the previous one. So using any(diff(data)<0) will give you the answer.

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by