Substitute of CUSUM algorithm for point-change detection and curve fitting..

6 次查看(过去 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?

采纳的回答

Greg Heath
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

更多回答(1 个)

jyoti mundra
jyoti mundra 2020-5-18
Hi, is there any matlab function available for CUSUM also?

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by