Substitute of CUSUM algorithm for point-change detection and curve fitting..
조회 수: 5 (최근 30일)
이전 댓글 표시
Hi, I am using CUSUM (cumulative sum) algorithm to detect points of sudden changes in my neural signal data. This algorithm is working fine, but I want to try some other algorithm. Can anyone suggest some other algorithm that can be used to detect changes?
댓글 수: 1
H. Sh. G.
2021년 11월 9일
Hi
Use findchangpts.m
https://www.mathworks.com/help/signal/ref/findchangepts.html
채택된 답변
Greg Heath
2017년 5월 1일
Just compare the new point with the old mean before updating the mean
check(n+1) = abs( x(n+1)- meanx(n) )
meanx(n+1) = ( x(n+1) + n*meanx(n))/(n+1)
Hope this helps
Thank you for formally accepting my answer
Greg
댓글 수: 0
추가 답변 (1개)
jyoti mundra
2020년 5월 18일
Hi, is there any matlab function available for CUSUM also?
댓글 수: 1
Tommy
2020년 5월 22일
In the signal processing toolbox:
참고 항목
카테고리
Help Center 및 File Exchange에서 Measurements and Feature Extraction에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!