Question

In: Electrical Engineering

) Given a digital filter with the following numerator and denominator coefficient vectors, respectively: Num= 8.831,...

) Given a digital filter with the following numerator and denominator coefficient vectors, respectively: Num= 8.831, 16.234, 25.118, 16.234, 8.831, and Den= 1.0000, 1.7342, 2.5277, 1.5502, 0.7998. (a) Find the poles and zeros of the filter transfer function. Is the filter stable? (b) Plot the magnitude and phase of H(e jω) of the filter. Hence, determine the type of filter (LP, HP, BP, or Notch) it represents. (c) Determine the 3-dB bandwidth of the filter. (d) If the sampling period is T = 0.5 µsec, determine the 3-dB bandwidth in Hz.

Solutions

Expert Solution

We have the transfer function

zeros of H(z) are

z=

-0.4711 + 0.8821i
-0.4711 - 0.8821i
-0.4480 + 0.8940i
-0.4480 - 0.8940i
--------------

poles of H(z) are

z=

-0.3770 + 0.8654i
-0.3770 - 0.8654i
-0.4901 + 0.8108i
-0.4901 - 0.8108i

---------------------

%matlab

w=-pi:0.001*pi:pi;
z=exp(1i.*w);
num=8.831.*z.^4+16.234.*z.^3+25.118.*z.^2+16.234.*z+8.831;
den=1.0000.*z.^4+1.7342.*z.^3+2.5277.*z.^2+1.5502.*z+0.7998;
H=num./den;
subplot(211);
plot(w,20.*log10(abs(H)));
xlabel('\Omega');
ylabel('20log_{10}(H(e^{j\Omega})');
subplot(212);
plot(w,angle(H).*(180/pi));
xlabel('\Omega');
ylabel('\angle{H(e^{j\Omega}}');

-----------------------

----------------------------

From the magnitude plot it can be inferred that the filter is a NOTCH FILTER.

-------------

c)

From the magnitude plot, the -3dB frequencies are

therefore

3-dB bandwidth is

-------------\

d)

analog frequencies are related to digital frequencies by the relation

therefore

analog band width


Related Solutions

Java Implement a class named “Fraction” with the following properties: numerator: int type, private denominator: int...
Java Implement a class named “Fraction” with the following properties: numerator: int type, private denominator: int type, private and the following methods: one default constructor which will create a fraction of 1/1. one constructor that takes two parameters which will set the values of numerator and denominator to the specified parameters. int getNum() : retrieves the value of numerator int getDenom(): retrieves the value of the denominator Fraction add(Fraction frac): adds with another Fraction number and returns the result in...
Q1: Given the following code, what is returned by tq(4)? int tq(int num){ if (num ==...
Q1: Given the following code, what is returned by tq(4)? int tq(int num){ if (num == 0) return 0; else if (num > 100) return -1; else     return num + tq( num – 1 ); } Group of answer choices: 0 4 -1 10 Q2: Given that values is of type LLNode<Integer> and references a linked list (non-empty) of Integer objects, what does the following code do if invoked as mystery(values)? int mystery(LLNode<Integer> list) {    if (list.getLink() ==...
Design an IIR digital filter based on the bilinear transformation method using the following transfer function...
Design an IIR digital filter based on the bilinear transformation method using the following transfer function as a reference (use three decimal places of precision for your response): H (s) = 5 / (s ^ 2 + 1.1s +5) The digital filter must have a resonant frequency at wr = pi / 3 a) Calculate H (z) b) Find the correctly simplified difference equation of the designed system. c) Implement the discrete system obtained using block diagram.. Show every step
Obtain the transfer function of a low pass digital filter meeting the following specifications: Passband 0...
Obtain the transfer function of a low pass digital filter meeting the following specifications: Passband 0 − 60 Hz; Stopband > 85 Hz; Stopband attenuation > 15 dB Assume sampling frequency of 256 Hz and having 3rd order Butterworth Characteristics.
2. Design a digital lowpass filter to meet the following specifications: passband edge = 0:45π stopband...
2. Design a digital lowpass filter to meet the following specifications: passband edge = 0:45π stopband edge = 0:5π Rp = 0.5 dB, As = 60 dB a. Design a Buttterworth filter, you may use the butteworth and butter commands to implement. b. Design Chebyshev Type 1 filter ( use the equivalent commands to above ) c. Design an Elliptic filter ( use the equivalent commands to part a ). d. List the order of each filter and find the...
Beta coefficient Given the following information, determine the beta coefficient for Stock L that is consistent...
Beta coefficient Given the following information, determine the beta coefficient for Stock L that is consistent with equilibrium:  = 14.75%; rRF = 3.15%; rM = 8.5%. Round your answer to two decimal places.
Each of the following vectors is given in terms of its x- and y-components.
Each of the following vectors is given in terms of its x- and y-components.Part Avx = 23 m/s , vy = 45 m/s . Find the vector's magnitude.Part Bvx = 23 m/s , vy = 45 m/s . Find the vector's direction.Part Cax = 9.0 m/s2 , ay = -3.5 m/s2 . Find the vector's magnitude.Part Dax = 9.0 m/s2 , ay = -3.5 m/s2 . Find the vector's direction
1.         Fill in the following chart for the correlation coefficient. No credit will be given unless...
1.         Fill in the following chart for the correlation coefficient. No credit will be given unless the entire chart is filled in. Name Symbol What it Tells Us Abs. or Rel.? (give units if absolute) Boundaries What Extremes Signify Population Correlation Coefficient Sample Correlation Coefficient 2.         Fill in the following chart for the coefficient of determination. No credit will be given unless the entire chart is filled in. Name Symbol What it Tells Us Abs. or Rel.? (give units if...
- Given the following information, determine the beta coefficient for Stock L that is consistent with...
- Given the following information, determine the beta coefficient for Stock L that is consistent with equilibrium: = 9.5%; rRF = 2.5%; rM = 11.5%. - You have been managing a $5 million portfolio that has a beta of 1.05 and a required rate of return of 11.925%. The current risk-free rate is 3%. Assume that you receive another $500,000. If you invest the money in a stock with a beta of 1.35, what will be the required return on...
Given the following information, determine the beta coefficient for Stock L that is consistent with equilibrium:  =...
Given the following information, determine the beta coefficient for Stock L that is consistent with equilibrium:  = 9.25%; rRF = 3.45%; rM = 12.5%. Round your answer to two decimal places.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT