How to find specific frequency in signal
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ali Asghar
el 11 de Ag. de 2019
Comentada: Star Strider
el 16 de Ag. de 2019
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?
![untitled.jpg](https://www.mathworks.com/matlabcentral/answers/uploaded_files/233505/untitled.jpeg)
0 comentarios
Respuesta aceptada
Star Strider
el 11 de Ag. de 2019
If you have R2018a or later and the Signal Processing Toolbox, use the bandpass function to filter your signal.
8 comentarios
Star Strider
el 16 de Ag. de 2019
I would use:
[signal_filtered, df] = bandstop(signal, [49 51], Fs);
You can then also use ‘df’ with filtfilt to filter other signals.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!