필터 지우기
필터 지우기

How to smoothen a signal using response time of a sensor ?

조회 수: 1 (최근 30일)
Hi everyone,
I predicted a signal using mathematical model and I want to compare it with a sensor signal. The problem is my predicted signal reaches the maximum value within fraction of milli seconds. So, I want to include the response time of the sensor in the mathematical model and correct the predicted signal. I tried first order low pass filter using lowpass command in Matlab, but I didn't find any difference. The frequency response(FFT) of my predicted signal shows that my signal always lies below -10dB. Is there any way to include the information about the rise time of the sensor and smoothen the signal?
Thanks!!!
tr = 1.2; %response time
t_s = 0.2; % sampling rate in seconds
f_pass = 0.35/(tr);
f_s = 1/t_s;
Ysim_pt = lowpass(Ysim,f_pass,f_s);

채택된 답변

Andrey Kiselnikov
Andrey Kiselnikov 2019년 8월 19일
If you do not see any changes after filtering it means that all signal components pass through your filter. To visualize it and compare filter response and signal spectrum (use FFT for it) add this string in your script, may bee it can help you.
d = fdesign.lowpass('Fp,Fst,Ap,Ast',f_pass,f_stop,1,60);
Hd = design(d);
fvtool(Hd);
values "1, 60" are defaluts for "lowpass" command.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by