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

3 vues (au cours des 30 derniers jours)
Ali
Ali le 23 Jan 2023
Modifié(e) : Matt J le 23 Jan 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.

Réponses (1)

Matt J
Matt J le 23 Jan 2023
Modifié(e) : Matt J le 23 Jan 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

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by