How to recognize discontinuity of slope in numerical data
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Saeid
el 11 de Sept. de 2021
Comentada: Saeid
el 11 de Sept. de 2021
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.
0 comentarios
Respuesta aceptada
Walter Roberson
el 11 de Sept. de 2021
Take the second derivative --
d2y = gradient(x,gradient(x,y))
Look for the spot where the second derivative changes from negative to positive.
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!