How to detect specified regions on the curve?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Andrii Mishchenko
le 13 Juin 2017
Commenté : Andrii Mishchenko
le 29 Juin 2017
Hello, dear matlab users and programers.
I have a 2D data set temperature vs time, like in image attached. What I have to do is to create an algorithm that will detect when the curve is start to rolling down and when the data stops to change (horizontal part of the curve).
As an idea I am going to calculate tangent of the line between two data points (when tangent is <0 means that curve is rolling down and when tangent is aprox. = 0, than it is constant). Are there any more precise method to do this?
Thank you very much!
0 commentaires
Réponse acceptée
Michael Dombrowski
le 29 Juin 2017
Have a look at findpeaks which can give you the maxima of your function. Otherwise, just use max() to get the global maximum. Taking the derivative should also work similarly. See this previous answer.
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!