How to recognize discontinuity of slope in numerical data
20 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am dealing with a set of data that, when plotted, shows a breaking point as shown in circles. How can I identify these points in the data without needing to plot them every time? I tried looking for discontinuity in the sllope, but that did not help.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/735394/image.png)
0 commentaires
Réponse acceptée
Walter Roberson
le 11 Sep 2021
Take the second derivative --
d2y = gradient(x,gradient(x,y))
Look for the spot where the second derivative changes from negative to positive.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!