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!