I am trying to filter noise present in the signal so that it gives me a smooth curve.But the signal is not getting filtered.Any help?
조회 수: 1 (최근 30일)
이전 댓글 표시
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/163129/image.png)
Following is the code to filter out noise.Kindly let me know why i dont see the filtered signal.I want to get output like the one attached.Attached is the input file.I am working on the last column.
file = 'forRef_2.xls';
col = xlsread(file,'J:J');x_mags=abs(fft(col));
%num_bins=length(x_mags);
[b a]=butter(2,0.3,'low');
x_filtered=filter(b,a,col);
figure;
plot(col)
hold on
plot(x_filtered,'r')
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Digital Filter Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!