About Butterworth filter design ?
Show older comments
Please; anyone can help me to design a Buttterworth filter for the attached data in the daily bases? i want to keep freq component up to 1.15^-8 Hz (1000 days and below). i take:
fc=1.15*10^-8; % cuttoff freq (1000 day=1/1000*24*60*60)
fs=1.1*10^-5; % sampling time (1 day)
% insert y data
[b,a]=butter(2,fc/(fs/2),'high' );
my = filter(b,a,y);plot(my)
Is that correct?
Accepted Answer
More Answers (0)
Categories
Find more on Multirate Signal Processing 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!