how to get the x-axis filtering same to the noisy?
4 次查看(过去 30 天)
显示 更早的评论
cut_off=1.5e3/Fs/2;
order=16;
h=fir1(order,cut_off);
fh=fft(h,nfft2);
fh=fh(1:nfft2/2);
plot(xfft,abs(fh/max(fh)));
ylabel('AMPLITUDE');
title('Impulse Response Signal')
figure(1);
w=conv(L,h);
subplot(3,2,5);
plot(w,'b','linewidth', 2);
title('Filtering Arc Signal')
xlabel('TIME,t(us)')
ylabel('AMPLITUDE');

0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!