Denoising Audio Signal of Doppler
1 次查看(过去 30 天)
显示 更早的评论
Hi there! Is it possible to remove signal below a defined power-threshold? For example all signals below the power of 5.
2 个评论
Image Analyst
2020-4-4
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?
采纳的回答
Ameer Hamza
2020-4-4
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.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Detection, Range and Doppler Estimation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!