I am trying to find a 'threshold value' for separation of the noise components and the signal components in the received signal r1. How can I do that?
7 次查看(过去 30 天)
显示 更早的评论
I want to set all frequency components below that threshold to 0 and store this as a modified filtered spectrum, ( take care for the symmetry of the complex spectrum for a real signal) and inverse FFT this modified spectrum to obtain the corresponding real signal rx. The sequence of tones rx is a received signal after noise suppression, so DTMF codes can be detected. How can I do that?? Please help me
Signal1= 0.5*[ sin(2*pi*f1(5)*t)+sin(2*pi*f2(5)*t)];
r1= Signal1+ randn(size(t)); % Random noise signal
R1= fft(r1, 512); % fft of S1
p= R5.* conj(R5)/512; % power spectrum
f= 1000*(0:256)/512; % frequency scale
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Transforms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!