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!