extract data points where the slope (derivative) of the plot changes suddenly

5 visualizaciones (últimos 30 días)
Ali
Ali el 23 de En. de 2023
Editada: Matt J el 23 de En. de 2023
Hi,
Is it possible to extract (or select) data points from a plot that have a massive change in the tangent (derivative) before and after them?
I mean the data points where the slope (derivative) of the plot changes suddenly.
I cannot do it manually because there are lots of data points.

Respuestas (1)

Matt J
Matt J el 23 de En. de 2023
Editada: Matt J el 23 de En. de 2023
data=[ 1 2 3 4 3 2 1]
data = 1×7
1 2 3 4 3 2 1
loc=abs(diff(data,2)) > 1
loc = 1×5 logical array
0 0 1 0 0
loc=[false, loc ,false]; %pad with zeros because diff() shortens the vector by two
data_extraction = data(loc)
data_extraction = 4

Categorías

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

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by