Detect major events in signal data?

女生的网名这么多〃 提交于 2019-12-03 21:45:57

You might try a couple things. Both of these options depend somehow on knowing the type of unusual event that is to be expected.

Say you know the events are typically 100 samples in length. Create this signal and examine the peaks.

indicator = filtfilt(ones(1, 100) ./ 100, 1, abs(signal));

This will look something like your orange signal.

Second, you might try examining the sample-to-sample variation in the signal.

indicator = abs(diff(signal));

If you really want to go all-out, try a 1D-convolutional neural network. This requires labeled training data.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!