SlideShare a Scribd company logo
FILTER IMPLEMENTATION AND EVALUATION USING MATLAB
Our online Tutors are available 24*7 to provide Help with Filter Implementation and Evaluation
Homework/Assignment or a long term Graduate/Undergraduate Filter Implementation and
Evaluation Project. Our Tutors being experienced and proficient in Filter Implementation and
Evaluation ensure to provide high quality Filter Implementation and Evaluation Homework
Help. Upload your Filter Implementation and Evaluation Assignment at ‘Submit Your
Assignment’ button or email it to info@assignmentpedia.com. You can use our ‘Live Chat’
option to schedule an Online Tutoring session with our Filter Implementation and Evaluation
Tutors.
LOWPASS FIR FILTER
This example show how to design and implement an FIR filter using the command line
functions: fir1 and fdesign.lowpass, and the interactive tool fdatool.
To filter the input signal, these examples use the filter command. The examples in Zero-Phase
Filtering show you how to implement zero-phase filtering with filtfilt.
Create a signal to use in the examples. The signal is a 100-Hz sinewave in additive N(0,1/4)
white Gaussian noise. Set the random number generator to the default state for reproducible
results.
rng default;
Fs = 1000;
t = linspace(0,1,Fs);
x = cos
(2*pi*100*t)+0.5*randn(size(t));
The filter design is an FIR lowpass filter with order equal to 20 and a cutoff frequency of 150 Hz.
Use a Kasier window with length one sample greater than the filter order and β=3.
See kaiser for details on the Kaiser window.
Use fir1 to design the filter. fir1 requires normalized frequencies in the interval [0,1], where 1 is
(1)π radians/sample. To use fir1, you must convert all frequency specifications to normalized
frequencies.
Design the filter and view the filter's magnitude response.
fc = 150;
Wn = (2/Fs)*fc;
b = fir1(20,Wn,'low',kaiser(21,3));
fvtool(b,1,'Fs',Fs);
Apply the filter to the signal and plot the result for the first ten periods of the 100-Hz sinusoid.
y = filter(b,1,x);
plot(t(1:100),x(1:100),'k');
hold on;
plot(t(1:100),y(1:100),'r','linewidth',2);
legend('Original Signal','Filtered Data','Location','SouthEast');
xlabel('Seconds'); ylabel('Amplitude');
Design the same filter using fdesign.lowpass.
Set the filter specifications using the 'N,Fc' specification string. With fdesign.lowpass, you can
specify your filter design in Hz.
Fs = 1000;
d = fdesign.lowpass('N,Fc',20,150,Fs);
Hd = design(d,'window','Window',kaiser(21,3));
Filter the data and plot the result.
y1 = filter(Hd,x);
plot(t(1:100),x(1:100),'k');
hold on;
plot(t(1:100),y1(1:100),'r','linewidth',2);
legend('Original Signal','Filtered Data','Location','SouthEast');
xlabel('Seconds'); ylabel('Amplitude');
Design and implement a lowpass FIR filter using the window method with the interactive
tool fdatool.
Start FDATool by entering
fdatool
at the command line.
Set the Response Type to Lowpass. Set the Design Method to FIR and select
the Window method.
Under Filter Order, select Specify order. Set the order to 20.
Under Frequency Specifications. Set Units to Hz, Fs: to 1000, and Fc: to 150.
Click Design Filter.
Select File —>Export... to export your FIR filter to the MATLAB®
workspace as coefficients or a
filter object. In this example, export the filter as an object. Specify the variable name as Hd1.
Click Export.
Filter the input signal in the command window with the exported filter object. Plot the result for
the first ten periods of the 100-Hz sinusoid.
y2 = filter(Hd1,x);
plot(t(1:100),x(1:100),'k');
hold on;
plot(t(1:100),y1(1:100),'r','linewidth',2);
legend('Original Signal','Filtered Data','Location','SouthEast');
xlabel('Seconds'); ylabel('Amplitude');
Select File —> Generate MATLAB Code to generate a MATLAB function to create a filter
object using your specifications.
You can also use the interactive tool filterbuilder to design your filter.
Bandpass Filters — Minimum-Order FIR and IIR Systems
This example shows you how to design a bandpass filter and filter data with minimum-order FIR
equiripple and IIR Butterworth filters. The example uses fdesign.bandpass and the interactive
tool fdatool.
You can model many real-world signals as a superposition of oscillating components, a low-
frequency trend, and additive noise. For example, economic data often contain oscillations,
which represent cycles superimposed on a slowly varying upward or downward trend. In
addition, there is an additive noise component, which is a combination of measurement error
and the inherent random fluctuations in the process.
In these examples, assume you sample some process every day for 1 year. Assume the
process has oscillations on approximately one-week and one-month scales. In addition, there is
a low-frequency upward trend in the data and additive N(0,1/4) white Gaussian noise.
Create the signal as a superposition of two sine waves with frequencies of 1/7 and 1/30
cycles/day. Add a low-frequency increasing trend term and N(0,1/4) white Gaussian noise. Set
the random number generator to the default state for reproducible results. The data is sampled
at 1 sample/day. Plot the resulting signal and the power spectral density (PSD) estimate.
rng default;
Fs =1;
n = 1:365;
x = cos(2*pi*(1/7)*n)+cos(2*pi*(1/30)*n-pi/4);
trend = 3*sin(2*pi*(1/1480)*n);
y = x+trend+0.5*randn(size(n));
subplot(211);
plot(n,y); xlabel('Days'); set(gca,'xlim',[1 365]);
grid on;
subplot(212);
[pxx,f] = periodogram(y,[],length(y),Fs);
plot(f,10*log10(pxx));
xlabel('Cycles/day'); ylabel('dB'); grid on;
The low-frequency trend appears in the power spectral density estimate as increased low-
frequency power. The low-frequency power appears approximately 10 dB above the oscillation
at 1/30 cycles/day. Use this information in the specifications for the filter stopbands.
Design minimum-order FIR equiripple and IIR Butterworth filters with the following
specifications: passband from [1/40,1/4] cycles/day and stopbands from [0,1/60] and [1/4,1/2]
cycles/day. Set both stopband attenuations to 10 dB and the passband ripple tolerance to 1 dB.
d = fdesign.bandpass('Fst1,Fp1,Fp2,Fst2,Ast1,Ap,Ast2',...
1/60,1/40,1/4,1/2,10,1,10,1);
Hd1 = design(d,'equiripple');
Hd2 = design(d,'butter');
Compare the order of the FIR and IIR filters and the unwrapped phase responses.
fprintf('The order of the FIR filter is %dn',length(Hd1.Numerator)-1);
[b,a] = sos2tf(Hd2.sosMatrix,Hd2.ScaleValues);
fprintf('The order of the IIR filter is %dn',length(max(b,a))-1);
[phifir,w] = phasez(Hd1,[],1);
[phiiir,w] = phasez(Hd2,[],1);
plot(w,unwrap(phifir),'b'); hold on;
plot(w,unwrap(phiiir),'r'); grid on;
xlabel('Cycles/Day'); ylabel('Radians');
legend('FIR Equiripple Filter','IIR Butterworth Filter');
The IIR filter has a much lower order that the FIR filter. However, the FIR filter has a linear
phase response over the passband, while the IIR filter does not. The FIR filter delays all
frequencies in the filter passband equally, while the IIR filter does not.
Additionally, the rate of change of the phase per unit of frequency is greater in the FIR filter than
in the IIR filter.
Design a lowpass FIR equiripple filter for comparison. The lowpass filter specifications are:
passband [0,1/4] cycles/day, stopband attenuation equal to 10 dB, and the passband ripple
tolerance set to 1 dB.
dlow = fdesign.lowpass('Fp,Fst,Ap,Ast',1/4,1/2,1,10,1);
Hdlow = design(dlow,'equiripple');
Filter the data with the bandpass and lowpass filters.
yfir = filter(Hd1,y);
yiir = filter(Hd2,y);
ylow = filter(Hdlow,y);
Plot the PSD estimate of the bandpass IIR filter output. You can replace yiir with yfir in the
following code to view the PSD estimate of the FIR bandpass filter output.
[pxx,f] = periodogram(yiir,[],length(yiir),Fs);
plot(f,10*log10(pxx));
xlabel('Cycles/day'); ylabel('dB'); grid on;
The PSD estimate shows the bandpass filter attenuates the low-frequency trend and high-
frequency noise.
Plot the first 120 days of FIR and IIR filter output.
plot(n(1:120),yfir(1:120),'b');
hold on;
plot(n(1:120),yiir(1:120),'r');
xlabel('Days'); axis([1 120 -2.8 2.8]);
legend('FIR bandpass filter output','IIR bandpass filter output',...
'Location','SouthEast');
The increased phase delay in the FIR filter is evident in the filter output.
Plot the lowpass FIR filter output superimposed on the superposition of the 7-day and 30-day
cycles for comparison.
plot(n,x,'k');
hold on;
plot(n,ylow,'r'); set(gca,'xlim',[1 365]);
legend('7-day and 30-day cycles','FIR lowpass filter output',...
'Location','NorthWest');
xlabel('Days');
You can see in the preceding plot that the low-frequency trend is evident in the lowpass filter
output. While the lowpass filter preserves the 7-day and 30-day cycles, the bandpass filters
perform better in this example because the bandpass filters also remove the low-frequency
trend.
Design and implement the bandpass Butterworth (IIR) filter with the interactive tool fdatool.
Start FDATool by entering
fdatool
at the command line.
Set the Response Type to Bandpass. Set the Design Method to IIR and select
the Butterworth design.
Under Filter Order, select Minimum order.
Under Frequency Specifications. Set Units to Hz, Fs: to 1 , Fstop1: to 1/60, Fpass1: to
1/40, Fpass2: to 1/4, and Fstop2: to 1/2. UnderMagnitude Specifications,
set Astop1: and Astop2: to 10 and Apass: to 1.
Click Design Filter.
Select File —> Export... to export your IIR filter to the MATLAB workspace as coefficients or a
filter object. In this example, export the filter as an object. Specify the variable name as Hd3.
Click Export.
Filter the input signal in the command window with the exported filter object.
yfilt = filter(Hd3,x);
Select File —> Generate MATLAB Code to generate a MATLAB function to create a filter
object using your specifications.
You can also use the interactive tool filterbuilder to design your filter.
Zero-Phase Filtering
These examples show you how to perform zero-phase filtering. The signal and filters are
described in Lowpass FIR Filter — Window Method and Bandpass Filters — Minimum-Order
FIR and IIR Systems.
Repeat the signal generation and lowpass filter design with fir1 and fdesign.lowpass. You do not
have to execute the following code if you already have these variables in your workspace.
rng default;
Fs = 1000;
t = linspace(0,1,Fs);
x = cos(2*pi*100*t)+0.5*randn(size(t));
% Using fir1
fc = 150;
Wn = (2/Fs)*fc;
b = fir1(20,Wn,'low',kaiser(21,3));
% Using fdesign.lowpass
d = fdesign.lowpass('N,Fc',20,150,Fs);
Hd = design(d,'window','Window',kaiser(21,3));
Filter the data using filter. Plot the first 100 points of the filter output along with a superimposed
sinusoid with the same amplitude and initial phase as the input signal.
yout = filter(Hd,x);
xin = cos(2*pi*100*t);
plot(t(1:100),xin(1:100),'k');
hold on; grid on;
plot(t(1:100),yout(1:100),'r','linewidth',2);
xlabel('Seconds'); ylabel('Amplitude');
legend('Input Sine Wave','Filtered Data',...
'Location','NorthEast');
Looking at the initial 0.01 seconds of the filtered data, you see that the output is delayed with
respect to the input. The delay appears to be approximately 0.01 seconds, which is almost 1/2
the length of the FIR filter in samples (10*0.001).
This delay is due to the filter's phase response. The FIR filter in these examples is a type I
linear-phase filter. The group delay of the filter is 10 samples.
Plot the group delay using fvtool.
fvtool(Hd,'analysis','grpdelay');
In many applications, phase distortion is acceptable. This is particularly true when phase
response is linear. In other applications, it is desirable to have a filter with a zero-phase
response. A zero-phase response is not technically possibly in a noncausal filter. However, you
can implement zero-phase filtering using a causal filter with filtfilt.
Filter the input signal using filtfilt. Plot the responses to compare the filter outputs obtained
with filter and filtfilt.
yzp = filtfilt(Hd.Numerator,1,x);
% or yzp = filtfilt(b,1,x);
plot(t(1:100),xin(1:100),'k');
hold on;
plot(t(1:100),yout(1:100),'r','linewidth',2);
plot(t(1:100),yzp(1:100),'b','linewidth',2);
xlabel('Seconds'); ylabel('Amplitude');
legend('100-Hz Sine Wave','Filtered Signal','Zero-phase Filtering',...
'Location','NorthEast');
In the preceding figure, you can see that the output of filtfilt does not exhibit the delay due to the
phase response of the FIR filter.
The IIR bandpass filter designed in Bandpass Filters — Minimum-Order FIR and IIR Systems is
a biquad filter. Stated equivalently, the IIR filter is in the form of cascaded second-order
sections. To implement zero-phase filtering with a discrete-time biquad filter, you must input the
matrix of second-order sections and the gain values for each of those sections into filtfilt.
Zero phase filter the data in Bandpass Filters — Minimum-Order FIR and IIR Systems with the
IIR bandpass filter. For convenience, the code to generate the signal and filter is repeated. You
do not have to execute this code if you already have these variables in your workspace.
Generate the data.
rng default;
Fs =1;
n = 1:365;
x = cos(2*pi*(1/7)*n)+cos(2*pi*(1/30)*n-pi/4);
trend = 3*sin(2*pi*(1/1480)*n);
y = x+trend+0.5*randn(size(n));
Specify and design the filter.
d = fdesign.bandpass('Fst1,Fp1,Fp2,Fst2,Ast1,Ap,Ast2',...
1/60,1/40,1/4,1/2,10,1,10,1);
Hd2 = design(d,'butter');
Use filtfilt to zero-phase filter the input. Input the matrix of second-order sections and the gain
(scale) value of 1 along with your signal.
yzpiir = filtfilt(Hd2.sosMatrix,Hd2.ScaleValues,y);
visit us at www.assignmentpedia.com or email us at info@assignmentpedia.com or call us at +1 520 8371215

More Related Content

DOCX
Design of Filter Circuits using MATLAB, Multisim, and Excel
PPTX
An Introduction to Eye Diagram, Phase Noise and Jitter
PDF
DDSP_2018_FOEHU - Lec 10 - Digital Signal Processing Applications
PDF
Multistage Implementation of Narrowband LPF by Decimator in Multirate DSP App...
PPT
Digital Filters Part 1
PPS
PresentationSAR
PPTX
Sistec ppt
PDF
Suppression of Chirp Interferers in GPS Using the Fractional Fourier Transform
Design of Filter Circuits using MATLAB, Multisim, and Excel
An Introduction to Eye Diagram, Phase Noise and Jitter
DDSP_2018_FOEHU - Lec 10 - Digital Signal Processing Applications
Multistage Implementation of Narrowband LPF by Decimator in Multirate DSP App...
Digital Filters Part 1
PresentationSAR
Sistec ppt
Suppression of Chirp Interferers in GPS Using the Fractional Fourier Transform

What's hot (17)

PPT
Lecture13
PDF
Filters two design_with_matlab
PPTX
Design of Filters PPT
PDF
DSP_2018_FOEHU - Lec 06 - FIR Filter Design
PDF
Design and realization of fir filter using chebyshev window
PPTX
design of sampling filter
PDF
Optimum FIR Filtersfor Digital Pulse Compression of Biphase Barker Codes with...
PDF
DSP_FOEHU - Lec 10 - FIR Filter Design
PDF
Analysis of Butterworth and Chebyshev Filters for ECG Denoising Using Wavelets
PPT
Digital Filters Part 2
PDF
Design And Performance of Finite impulse Response Filter Using Hyperbolic Cos...
PDF
Synchronous Time and Frequency Domain Analysis of Embedded Systems
PPTX
Dss
PDF
Dsp 2018 foehu - lec 10 - multi-rate digital signal processing
PDF
Fast Fourier Transform
PDF
Synchronous Time / Frequency Domain Measurements Using a Digital Oscilloscope...
Lecture13
Filters two design_with_matlab
Design of Filters PPT
DSP_2018_FOEHU - Lec 06 - FIR Filter Design
Design and realization of fir filter using chebyshev window
design of sampling filter
Optimum FIR Filtersfor Digital Pulse Compression of Biphase Barker Codes with...
DSP_FOEHU - Lec 10 - FIR Filter Design
Analysis of Butterworth and Chebyshev Filters for ECG Denoising Using Wavelets
Digital Filters Part 2
Design And Performance of Finite impulse Response Filter Using Hyperbolic Cos...
Synchronous Time and Frequency Domain Analysis of Embedded Systems
Dss
Dsp 2018 foehu - lec 10 - multi-rate digital signal processing
Fast Fourier Transform
Synchronous Time / Frequency Domain Measurements Using a Digital Oscilloscope...
Ad

Similar to Filter Implementation And Evaluation Project (20)

PPTX
Finite Impulse Response Band Pass Filter
PDF
Dsp gcu lab11
PDF
Paper id 252014114
PDF
IRJET- Filter Design for Educational Set Via Labview Software Program
PDF
Design Technique of Bandpass FIR filter using Various Window Function
PDF
Design Technique of Bandpass FIR filter using Various Window Function
PDF
IRJET- Designing of Basic Types of Filters using Standard Tool
PDF
PPT
It is a image pro ppt for image enhancement
PDF
Simulation Study of FIR Filter based on MATLAB
PDF
Linear Phase FIR Low Pass Filter Design Based on Firefly Algorithm
PPT
PDF
Solution Manual for Introduction to Digital Signal Processing, 1st Edition, D...
PDF
Matlab Filter Design and Implementation.pdf
PDF
Solution Manual for Introduction to Digital Signal Processing, 1st Edition, D...
PDF
Digital Signal Processing Summary
PPTX
FIR Filters Lecture (What are FIR FIlters)pptx
PDF
Solution Manual for Introduction to Digital Signal Processing, 1st Edition, D...
PPTX
Design of digital filters
PDF
Solution Manual for Introduction to Digital Signal Processing, 1st Edition, D...
Finite Impulse Response Band Pass Filter
Dsp gcu lab11
Paper id 252014114
IRJET- Filter Design for Educational Set Via Labview Software Program
Design Technique of Bandpass FIR filter using Various Window Function
Design Technique of Bandpass FIR filter using Various Window Function
IRJET- Designing of Basic Types of Filters using Standard Tool
It is a image pro ppt for image enhancement
Simulation Study of FIR Filter based on MATLAB
Linear Phase FIR Low Pass Filter Design Based on Firefly Algorithm
Solution Manual for Introduction to Digital Signal Processing, 1st Edition, D...
Matlab Filter Design and Implementation.pdf
Solution Manual for Introduction to Digital Signal Processing, 1st Edition, D...
Digital Signal Processing Summary
FIR Filters Lecture (What are FIR FIlters)pptx
Solution Manual for Introduction to Digital Signal Processing, 1st Edition, D...
Design of digital filters
Solution Manual for Introduction to Digital Signal Processing, 1st Edition, D...
Ad

More from Assignmentpedia (20)

PDF
Transmitter side components
PDF
Single object range detection
PDF
Sequential radar tracking
PDF
Resolution project
PDF
Radar cross section project
PDF
Radar application project help
PDF
Parallel computing homework help
PDF
Network costing analysis
PDF
Matlab simulation project
PDF
Matlab programming project
PDF
Links design
PDF
Image processing project using matlab
PDF
Help with root locus homework1
PDF
Transmitter subsystem
PDF
Computer Networks Homework Help
PDF
Theory of computation homework help
PDF
Econometrics Homework Help
PDF
Video Codec
PDF
Radar Spectral Analysis
PDF
Pi Controller
Transmitter side components
Single object range detection
Sequential radar tracking
Resolution project
Radar cross section project
Radar application project help
Parallel computing homework help
Network costing analysis
Matlab simulation project
Matlab programming project
Links design
Image processing project using matlab
Help with root locus homework1
Transmitter subsystem
Computer Networks Homework Help
Theory of computation homework help
Econometrics Homework Help
Video Codec
Radar Spectral Analysis
Pi Controller

Recently uploaded (20)

PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PPTX
Lesson notes of climatology university.
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PDF
Computing-Curriculum for Schools in Ghana
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
Cell Structure & Organelles in detailed.
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PPTX
master seminar digital applications in india
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
Classroom Observation Tools for Teachers
PDF
O7-L3 Supply Chain Operations - ICLT Program
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
Complications of Minimal Access Surgery at WLH
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
01-Introduction-to-Information-Management.pdf
PPTX
Cell Types and Its function , kingdom of life
102 student loan defaulters named and shamed – Is someone you know on the list?
Lesson notes of climatology university.
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
Computing-Curriculum for Schools in Ghana
human mycosis Human fungal infections are called human mycosis..pptx
Cell Structure & Organelles in detailed.
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Renaissance Architecture: A Journey from Faith to Humanism
master seminar digital applications in india
Module 4: Burden of Disease Tutorial Slides S2 2025
Abdominal Access Techniques with Prof. Dr. R K Mishra
Classroom Observation Tools for Teachers
O7-L3 Supply Chain Operations - ICLT Program
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Anesthesia in Laparoscopic Surgery in India
Complications of Minimal Access Surgery at WLH
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
01-Introduction-to-Information-Management.pdf
Cell Types and Its function , kingdom of life

Filter Implementation And Evaluation Project

  • 1. FILTER IMPLEMENTATION AND EVALUATION USING MATLAB Our online Tutors are available 24*7 to provide Help with Filter Implementation and Evaluation Homework/Assignment or a long term Graduate/Undergraduate Filter Implementation and Evaluation Project. Our Tutors being experienced and proficient in Filter Implementation and Evaluation ensure to provide high quality Filter Implementation and Evaluation Homework Help. Upload your Filter Implementation and Evaluation Assignment at ‘Submit Your Assignment’ button or email it to info@assignmentpedia.com. You can use our ‘Live Chat’ option to schedule an Online Tutoring session with our Filter Implementation and Evaluation Tutors. LOWPASS FIR FILTER This example show how to design and implement an FIR filter using the command line functions: fir1 and fdesign.lowpass, and the interactive tool fdatool. To filter the input signal, these examples use the filter command. The examples in Zero-Phase Filtering show you how to implement zero-phase filtering with filtfilt. Create a signal to use in the examples. The signal is a 100-Hz sinewave in additive N(0,1/4) white Gaussian noise. Set the random number generator to the default state for reproducible results. rng default; Fs = 1000; t = linspace(0,1,Fs); x = cos (2*pi*100*t)+0.5*randn(size(t)); The filter design is an FIR lowpass filter with order equal to 20 and a cutoff frequency of 150 Hz. Use a Kasier window with length one sample greater than the filter order and β=3. See kaiser for details on the Kaiser window. Use fir1 to design the filter. fir1 requires normalized frequencies in the interval [0,1], where 1 is (1)π radians/sample. To use fir1, you must convert all frequency specifications to normalized frequencies. Design the filter and view the filter's magnitude response. fc = 150; Wn = (2/Fs)*fc; b = fir1(20,Wn,'low',kaiser(21,3)); fvtool(b,1,'Fs',Fs); Apply the filter to the signal and plot the result for the first ten periods of the 100-Hz sinusoid. y = filter(b,1,x); plot(t(1:100),x(1:100),'k'); hold on; plot(t(1:100),y(1:100),'r','linewidth',2); legend('Original Signal','Filtered Data','Location','SouthEast'); xlabel('Seconds'); ylabel('Amplitude');
  • 2. Design the same filter using fdesign.lowpass. Set the filter specifications using the 'N,Fc' specification string. With fdesign.lowpass, you can specify your filter design in Hz. Fs = 1000; d = fdesign.lowpass('N,Fc',20,150,Fs); Hd = design(d,'window','Window',kaiser(21,3)); Filter the data and plot the result. y1 = filter(Hd,x); plot(t(1:100),x(1:100),'k'); hold on; plot(t(1:100),y1(1:100),'r','linewidth',2); legend('Original Signal','Filtered Data','Location','SouthEast'); xlabel('Seconds'); ylabel('Amplitude'); Design and implement a lowpass FIR filter using the window method with the interactive tool fdatool. Start FDATool by entering
  • 3. fdatool at the command line. Set the Response Type to Lowpass. Set the Design Method to FIR and select the Window method. Under Filter Order, select Specify order. Set the order to 20. Under Frequency Specifications. Set Units to Hz, Fs: to 1000, and Fc: to 150. Click Design Filter. Select File —>Export... to export your FIR filter to the MATLAB® workspace as coefficients or a filter object. In this example, export the filter as an object. Specify the variable name as Hd1.
  • 4. Click Export. Filter the input signal in the command window with the exported filter object. Plot the result for the first ten periods of the 100-Hz sinusoid. y2 = filter(Hd1,x); plot(t(1:100),x(1:100),'k'); hold on; plot(t(1:100),y1(1:100),'r','linewidth',2); legend('Original Signal','Filtered Data','Location','SouthEast'); xlabel('Seconds'); ylabel('Amplitude'); Select File —> Generate MATLAB Code to generate a MATLAB function to create a filter object using your specifications. You can also use the interactive tool filterbuilder to design your filter. Bandpass Filters — Minimum-Order FIR and IIR Systems This example shows you how to design a bandpass filter and filter data with minimum-order FIR equiripple and IIR Butterworth filters. The example uses fdesign.bandpass and the interactive tool fdatool. You can model many real-world signals as a superposition of oscillating components, a low- frequency trend, and additive noise. For example, economic data often contain oscillations, which represent cycles superimposed on a slowly varying upward or downward trend. In addition, there is an additive noise component, which is a combination of measurement error and the inherent random fluctuations in the process. In these examples, assume you sample some process every day for 1 year. Assume the process has oscillations on approximately one-week and one-month scales. In addition, there is a low-frequency upward trend in the data and additive N(0,1/4) white Gaussian noise. Create the signal as a superposition of two sine waves with frequencies of 1/7 and 1/30 cycles/day. Add a low-frequency increasing trend term and N(0,1/4) white Gaussian noise. Set the random number generator to the default state for reproducible results. The data is sampled at 1 sample/day. Plot the resulting signal and the power spectral density (PSD) estimate. rng default; Fs =1; n = 1:365; x = cos(2*pi*(1/7)*n)+cos(2*pi*(1/30)*n-pi/4); trend = 3*sin(2*pi*(1/1480)*n); y = x+trend+0.5*randn(size(n));
  • 5. subplot(211); plot(n,y); xlabel('Days'); set(gca,'xlim',[1 365]); grid on; subplot(212); [pxx,f] = periodogram(y,[],length(y),Fs); plot(f,10*log10(pxx)); xlabel('Cycles/day'); ylabel('dB'); grid on; The low-frequency trend appears in the power spectral density estimate as increased low- frequency power. The low-frequency power appears approximately 10 dB above the oscillation at 1/30 cycles/day. Use this information in the specifications for the filter stopbands. Design minimum-order FIR equiripple and IIR Butterworth filters with the following specifications: passband from [1/40,1/4] cycles/day and stopbands from [0,1/60] and [1/4,1/2] cycles/day. Set both stopband attenuations to 10 dB and the passband ripple tolerance to 1 dB. d = fdesign.bandpass('Fst1,Fp1,Fp2,Fst2,Ast1,Ap,Ast2',... 1/60,1/40,1/4,1/2,10,1,10,1); Hd1 = design(d,'equiripple'); Hd2 = design(d,'butter');
  • 6. Compare the order of the FIR and IIR filters and the unwrapped phase responses. fprintf('The order of the FIR filter is %dn',length(Hd1.Numerator)-1); [b,a] = sos2tf(Hd2.sosMatrix,Hd2.ScaleValues); fprintf('The order of the IIR filter is %dn',length(max(b,a))-1); [phifir,w] = phasez(Hd1,[],1); [phiiir,w] = phasez(Hd2,[],1); plot(w,unwrap(phifir),'b'); hold on; plot(w,unwrap(phiiir),'r'); grid on; xlabel('Cycles/Day'); ylabel('Radians'); legend('FIR Equiripple Filter','IIR Butterworth Filter'); The IIR filter has a much lower order that the FIR filter. However, the FIR filter has a linear phase response over the passband, while the IIR filter does not. The FIR filter delays all frequencies in the filter passband equally, while the IIR filter does not. Additionally, the rate of change of the phase per unit of frequency is greater in the FIR filter than in the IIR filter.
  • 7. Design a lowpass FIR equiripple filter for comparison. The lowpass filter specifications are: passband [0,1/4] cycles/day, stopband attenuation equal to 10 dB, and the passband ripple tolerance set to 1 dB. dlow = fdesign.lowpass('Fp,Fst,Ap,Ast',1/4,1/2,1,10,1); Hdlow = design(dlow,'equiripple'); Filter the data with the bandpass and lowpass filters. yfir = filter(Hd1,y); yiir = filter(Hd2,y); ylow = filter(Hdlow,y); Plot the PSD estimate of the bandpass IIR filter output. You can replace yiir with yfir in the following code to view the PSD estimate of the FIR bandpass filter output. [pxx,f] = periodogram(yiir,[],length(yiir),Fs); plot(f,10*log10(pxx)); xlabel('Cycles/day'); ylabel('dB'); grid on;
  • 8. The PSD estimate shows the bandpass filter attenuates the low-frequency trend and high- frequency noise. Plot the first 120 days of FIR and IIR filter output. plot(n(1:120),yfir(1:120),'b'); hold on; plot(n(1:120),yiir(1:120),'r'); xlabel('Days'); axis([1 120 -2.8 2.8]); legend('FIR bandpass filter output','IIR bandpass filter output',... 'Location','SouthEast'); The increased phase delay in the FIR filter is evident in the filter output. Plot the lowpass FIR filter output superimposed on the superposition of the 7-day and 30-day cycles for comparison. plot(n,x,'k'); hold on; plot(n,ylow,'r'); set(gca,'xlim',[1 365]); legend('7-day and 30-day cycles','FIR lowpass filter output',...
  • 9. 'Location','NorthWest'); xlabel('Days'); You can see in the preceding plot that the low-frequency trend is evident in the lowpass filter output. While the lowpass filter preserves the 7-day and 30-day cycles, the bandpass filters perform better in this example because the bandpass filters also remove the low-frequency trend. Design and implement the bandpass Butterworth (IIR) filter with the interactive tool fdatool. Start FDATool by entering fdatool at the command line. Set the Response Type to Bandpass. Set the Design Method to IIR and select the Butterworth design. Under Filter Order, select Minimum order. Under Frequency Specifications. Set Units to Hz, Fs: to 1 , Fstop1: to 1/60, Fpass1: to 1/40, Fpass2: to 1/4, and Fstop2: to 1/2. UnderMagnitude Specifications, set Astop1: and Astop2: to 10 and Apass: to 1.
  • 10. Click Design Filter. Select File —> Export... to export your IIR filter to the MATLAB workspace as coefficients or a filter object. In this example, export the filter as an object. Specify the variable name as Hd3. Click Export. Filter the input signal in the command window with the exported filter object.
  • 11. yfilt = filter(Hd3,x); Select File —> Generate MATLAB Code to generate a MATLAB function to create a filter object using your specifications. You can also use the interactive tool filterbuilder to design your filter. Zero-Phase Filtering These examples show you how to perform zero-phase filtering. The signal and filters are described in Lowpass FIR Filter — Window Method and Bandpass Filters — Minimum-Order FIR and IIR Systems. Repeat the signal generation and lowpass filter design with fir1 and fdesign.lowpass. You do not have to execute the following code if you already have these variables in your workspace. rng default; Fs = 1000; t = linspace(0,1,Fs); x = cos(2*pi*100*t)+0.5*randn(size(t)); % Using fir1 fc = 150; Wn = (2/Fs)*fc; b = fir1(20,Wn,'low',kaiser(21,3)); % Using fdesign.lowpass d = fdesign.lowpass('N,Fc',20,150,Fs); Hd = design(d,'window','Window',kaiser(21,3)); Filter the data using filter. Plot the first 100 points of the filter output along with a superimposed sinusoid with the same amplitude and initial phase as the input signal. yout = filter(Hd,x); xin = cos(2*pi*100*t); plot(t(1:100),xin(1:100),'k'); hold on; grid on; plot(t(1:100),yout(1:100),'r','linewidth',2); xlabel('Seconds'); ylabel('Amplitude'); legend('Input Sine Wave','Filtered Data',... 'Location','NorthEast');
  • 12. Looking at the initial 0.01 seconds of the filtered data, you see that the output is delayed with respect to the input. The delay appears to be approximately 0.01 seconds, which is almost 1/2 the length of the FIR filter in samples (10*0.001). This delay is due to the filter's phase response. The FIR filter in these examples is a type I linear-phase filter. The group delay of the filter is 10 samples. Plot the group delay using fvtool. fvtool(Hd,'analysis','grpdelay'); In many applications, phase distortion is acceptable. This is particularly true when phase response is linear. In other applications, it is desirable to have a filter with a zero-phase response. A zero-phase response is not technically possibly in a noncausal filter. However, you can implement zero-phase filtering using a causal filter with filtfilt. Filter the input signal using filtfilt. Plot the responses to compare the filter outputs obtained with filter and filtfilt. yzp = filtfilt(Hd.Numerator,1,x); % or yzp = filtfilt(b,1,x); plot(t(1:100),xin(1:100),'k');
  • 13. hold on; plot(t(1:100),yout(1:100),'r','linewidth',2); plot(t(1:100),yzp(1:100),'b','linewidth',2); xlabel('Seconds'); ylabel('Amplitude'); legend('100-Hz Sine Wave','Filtered Signal','Zero-phase Filtering',... 'Location','NorthEast'); In the preceding figure, you can see that the output of filtfilt does not exhibit the delay due to the phase response of the FIR filter. The IIR bandpass filter designed in Bandpass Filters — Minimum-Order FIR and IIR Systems is a biquad filter. Stated equivalently, the IIR filter is in the form of cascaded second-order sections. To implement zero-phase filtering with a discrete-time biquad filter, you must input the matrix of second-order sections and the gain values for each of those sections into filtfilt. Zero phase filter the data in Bandpass Filters — Minimum-Order FIR and IIR Systems with the IIR bandpass filter. For convenience, the code to generate the signal and filter is repeated. You do not have to execute this code if you already have these variables in your workspace. Generate the data. rng default;
  • 14. Fs =1; n = 1:365; x = cos(2*pi*(1/7)*n)+cos(2*pi*(1/30)*n-pi/4); trend = 3*sin(2*pi*(1/1480)*n); y = x+trend+0.5*randn(size(n)); Specify and design the filter. d = fdesign.bandpass('Fst1,Fp1,Fp2,Fst2,Ast1,Ap,Ast2',... 1/60,1/40,1/4,1/2,10,1,10,1); Hd2 = design(d,'butter'); Use filtfilt to zero-phase filter the input. Input the matrix of second-order sections and the gain (scale) value of 1 along with your signal. yzpiir = filtfilt(Hd2.sosMatrix,Hd2.ScaleValues,y); visit us at www.assignmentpedia.com or email us at info@assignmentpedia.com or call us at +1 520 8371215