Substitute of CUSUM algorithm for point-change detection and curve fitting..
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ishita agrawal
el 1 de Mayo de 2017
Comentada: H. Sh. G.
el 9 de Nov. de 2021
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 comentario
H. Sh. G.
el 9 de Nov. de 2021
Hi
Use findchangpts.m
https://www.mathworks.com/help/signal/ref/findchangepts.html
Respuesta aceptada
Greg Heath
el 1 de Mayo de 2017
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 comentarios
Más respuestas (1)
jyoti mundra
el 18 de Mayo de 2020
Hi, is there any matlab function available for CUSUM also?
1 comentario
Tommy
el 22 de Mayo de 2020
In the signal processing toolbox:
Ver también
Categorías
Más información sobre Measurements and Feature Extraction en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!