How to smoothen a signal using response time of a sensor ?
2 views (last 30 days)
Show older comments
Raja Vardhan Reddy Kothakapu
on 19 Aug 2019
Answered: Andrey Kiselnikov
on 19 Aug 2019
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);
0 Comments
Accepted Answer
Andrey Kiselnikov
on 19 Aug 2019
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 Comments
More Answers (0)
See Also
Categories
Find more on Signal Processing Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!