how to apply windowing in matlab in real time?
1 次查看(过去 30 天)
显示 更早的评论
i have continuous set/stream of data coming from serial port to MATLAB. this data is noisy so i want to do smoothing. how can i do smoothing for " real-time data"? should i need to use windowing method or is there any other method? please help me out.
0 个评论
回答(1 个)
Ced
2016-4-6
Depends a bit what kind of filter you want. Butterworth or moving average filters are quite common because they are the simplest.
I usually e.g. precompute the butterworth filter coefficients using butter, and then apply them to the incoming stream manually.
2 个评论
Ced
2016-4-7
Just google it, you will find a million results.
It's not too technical and skips a lot of theory, but great as introductory literature for applications.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!