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!