I want to calculate event frequency with a moving average, i have event times

6 次查看(过去 30 天)
Hi all,
I have a list of the time points of events over 30 seconds, and I want to graph the frequency of events with a moving average (1 second window). If the density of events is high early on and low later, the y axis of the graph should have a negative slope.
In MATLAB, I've imported two lists: the time points, and 0-30 second time points at 20kHz.
What would be the best way of going about this?
Thanks, Stefan

采纳的回答

Image Analyst
Image Analyst 2012-1-7
Use interp1() to get elements that have a uniform time spacing. Then use conv(data, ones(1, windowSize)/windowSize) to do the moving average.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graph and Network Algorithms 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by