How to find specific frequency in signal
2 次查看(过去 30 天)
显示 更早的评论
Dear
I have signal 30000x2 size.
i want to find out the specific reqency in signal like 50hz noise and band of 60-2000hz freq.
How can i do it?
0 个评论
采纳的回答
Star Strider
2019-8-11
If you have R2018a or later and the Signal Processing Toolbox, use the bandpass function to filter your signal.
8 个评论
Star Strider
2019-8-16
I would use:
[signal_filtered, df] = bandstop(signal, [49 51], Fs);
You can then also use ‘df’ with filtfilt to filter other signals.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!