필터 지우기
필터 지우기

How to get a smooth plot by filtering the sudden variation of the data?

조회 수: 2 (최근 30일)
Sateesh Kandukuri
Sateesh Kandukuri 2023년 3월 11일
댓글: Sateesh Kandukuri 2023년 3월 11일
I calculated the numerical derivative of my data as a function of time to get the speed. I got a noisy curve. Then I took the Fourier transform of the velocity data and filtered it to remove the sudden variations and smoothen it. The filtered data is not matching with the unfiltered data. Can anybody help me to solve this issue?
clear;
A = readmatrix('t-v.xlsx');
t = A(:,1);
v = A(:,2);
vfreq=fft(v);
vfreq1=fftshift(vfreq);
vfreq2=vfreq1;
for k=1:485
vfreq2(k)=0;
end
for k=515:size(vfreq1,1)
vfreq2(k)=0;
end
vfreq2=ifftshift(vfreq2);
dvxfilt=ifft(vfreq2);
plot(t/1e-9,dvxfilt);
xlabel('t (ns)')
ylabel('v')
xlim([0 100]);

답변 (1개)

Bruno Luong
Bruno Luong 2023년 3월 11일
편집: Bruno Luong 2023년 3월 11일
It recovers a big tail part of the signal. Hard to guess what should be the signal at the begining.
A=readmatrix('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1321095/t-v.xlsx');
x=A(:,1);
A=A(:,2);
B=flip(unwrap(flip(A)*10)/10);
plot(x,A,"g")
hold on
plot(x,B,'r','LineWidth',2)
  댓글 수: 3
Bruno Luong
Bruno Luong 2023년 3월 11일
편집: Bruno Luong 2023년 3월 11일
IMO your data are too corrupted to hope to recover reliable. You have to take the idea and push to the limit. I don't have time (and desire) to analyse your data.
There are several post about taking derivative, I recommend you to search and take a look in the archive, for example here
Sateesh Kandukuri
Sateesh Kandukuri 2023년 3월 11일
@Bruno Luong These fluctuations are mainly due to my system behaviour. We verified the data. The position functions are varying smoothly.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Bartlett에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by