How to recognize discontinuity of slope in numerical data
조회 수: 20 (최근 30일)
이전 댓글 표시
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
채택된 답변
Walter Roberson
2021년 9월 11일
Take the second derivative --
d2y = gradient(x,gradient(x,y))
Look for the spot where the second derivative changes from negative to positive.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!