Denoising Audio Signal of Doppler
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Freeplot
el 4 de Abr. de 2020
Comentada: Freeplot
el 4 de Abr. de 2020
Hi there! Is it possible to remove signal below a defined power-threshold? For example all signals below the power of 5.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/281829/image.png)
2 comentarios
Image Analyst
el 4 de Abr. de 2020
Do you want to remove a signal if ALL of the elements are below 5? Or if the MEAN or median of all the elements is below 5?
Respuesta aceptada
Ameer Hamza
el 4 de Abr. de 2020
It depends on what do you mean by "remove." If you just don't want to skip those frequency values than do something like this
f = [f1 f2 f3 ..]; % vector of frequency values
s = [s1 s2 s3 ..]; % vector of power signal
mask = s > 5; % find the signal values greater than 5
plot(f(mask), s(mask));
For a specific solution for your signals, please share details of how the signal is stored or share the signals in a mat file.
Más respuestas (0)
Ver también
Categorías
Más información sobre Detection, Range and Doppler Estimation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!