ece_351_hwset1_more_sol_fall_20

pdf

School

California State University, Northridge *

*We aren’t endorsed by this school

Course

351

Subject

Electrical Engineering

Date

Oct 30, 2023

Type

pdf

Pages

11

Uploaded by yentrissciri

Report
1 ECE 351 Homework Set 1: More Solutions (60 65)
2 Problem 60 a. h[n] = (1/4) n u[n] S | h[n] | = 1 + (1/4) + (1/16) + ... = 1/(1-1/4) = 4/3 <   BIBO Stable b. y[n + 2] 5.5 y[n + 1] 3 y[n] = 2 x[n] char. eq: E 2 5.5E 3 = 0  g = 6, -.5 not asymptotically stable not BIBO stable (see p. 314)
3 Problem 61 a. y[n] = x[n] * h[n] = x[n] * { d [n] + d [n 1] + d [n 2] + d [n 3] }/4 = { x[n] + x[n 1] + x[n 2] + x[n - 3] }/4 b. y[n] = x[n] * h[n] = (-.9) n u[n] * { d [n] + d [n 1] + d [n 2] + d [n 3] }/4 = (1/4) {(-.9) n u[n] + (-.9) n-1 u[n-1] + (-.9) n-2 u[n-2] + (-.9) n-3 u[n-3] } = (1/4) (-.9) n { u[n] + (-.9) -1 u[n-1] + (-.9) -2 u[n-2] + (-.9) -3 u[n-3] } = (1/4) (-.9) n { u[n] 1.1111 u[n-1] + 1.2346 u[n-2] - 1.3717 u[n-3] }
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
4 Problem 61, continued c. y[n] = x[n] * h[n] = {5, 5, 5, 5, 5, 5, 5} * { d [n] + d [n 1] + d [n 2] + d [n 3] }/4 =(1/4) [ {5 5 5 5 5 5 5} 1 st copy {5 5 5 5 5 5 5} 2 nd copy {5 5 5 5 5 5 5} {5 5 5 5 5 5 5}] = (1/4) { 5 10 15 20 20 20 20 15 10 5} sum = { 5/4, 10/4, 15/4, 5, 5, 5, 5, 15/4, 10/4, 5/4}
5 Problem 61, continued d. MATLAB code >> h = (1/4) * [1 1 1 1]; >> y = conv(x_noisy, h); >> n1 = 0: .1 : (.1)*(length(y)-1); >> subplot(3, 1, 1) >> stem(n, x) >> subplot(3, 1, 2) >> stem(n, x_noisy) >> subplot(3, 1, 3) >> stem(n1, y) 0 5 10 15 20 -5 0 5 Clean Sinusoid 0 5 10 15 20 -5 0 5 Noisy Sinusoid 0 5 10 15 20 -5 0 5 Filtered Noisy Sinusoid FIR Filter
6 Problem 62 y[n + 2] (1/4) y[n + 1] + (1/8) y[n] = 2 x[n + 1] 3 x[n] H(r) = (2r 3)/(r 2 .25r + .125) Steady-state Outputs: a. dc gain: H(r=1) = -1/(7/8) = -8/7 b. x[n] = 2 y[n] = (-8/7)*2 = -16/7 (using the dc gain c. x[n] = .7 n , gain = H(.7) = -3.6364 y[n] = -3.6364 (.7) n d. x[n] = cos( p n/8), using MATLAB: complex gain H(e j p /8 ) = -.31 + 1.58j; magnitude gain: 1.61, angle: 1.76 rad = 100.92º y[n] =1.61 cos(n p /8 + 100.92º)
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
7 Problem 62e MATLAB Code >> b = [2 -3]; a = [1 -1/4 1/8]; >> n = 0 : 30; >> x_parta = 2 * ones(1,31); >> x_partb = .7 .^n .* ones(1,31); >> x_partc = cos(n*pi/8); >> y_parta = filter(b, a, x_parta); >> y_partb = filter(b, a, x_partb); >> y_partc = filter(b, a, x_partc); >> subplot(3,1,1), stem(n, y_parta) >> subplot(3,1,2), stem(n, y_partb) >> subplot(3,1,3), stem(n, y_partc)
8 Problem 62e MATLAB 0 5 10 15 20 25 30 -5 0 5 yparta 0 5 10 15 20 25 30 -2 0 2 ypartb 0 5 10 15 20 25 30 -2 0 2 ypartc
9 Problem 63 Filter syntax: y = filter(b, a, x) where b is the vector of coefficients in P(z) and a is the vector of coefficients in Q(z), readily obtained from either H(z) = P(z)/Q(z) or from the difference equation, and x is the input Conv syntax: conv(x, h) where x is the input and h is the inpulse response Thus, use filter if the problem gives you the transfer function or the difference equation; use conv if the problem gives you the impulse response.
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
10 Problem 64 y[n] 1.5 y[n-1] + .5 y[n-2] = x[n] Find Char. Modes: Adv. Form: y[n + 2] 1.5 y[n+1] + .5 y[n] = 0 E 2 1.5 E + .5 = 0 g 2 1.5 g + .5 = 0 ( g -1) ( g -.5) = 0  g = 1, .5 Char. Modes: 1 n , .5 n (lead to resonance) Input closest to char. mode: d. (.6) n
Problem 65 Given spectrum X(f): 11 -100 100 X(f) f -500 -300 -100 100 300 500 X(f) f Spectrum of signal sampled at Nyquist rate, 200 samples/sec. 8 Note replicas are spaced apart by f s = 200 Hz; amplitude of sampled spectrum: 8/T s = 8 * f s = 1600 1600

Browse Popular Homework Q&A

Q: 4. Inflation and interest rates The following table shows the average nominal interest rates on…
Q: From the figure, consider P= 400 N and Q = 300 N. Determine the magnitude and direction of the…
Q: Use the References to access important values if needed for this question. A 0.380 gram sample of…
Q: What is the quantity of heat (in kJ) associated with cooling 121.1 g of water from 25.60 °C to ice…
Q: If a vector (a) If AB, find a and B. (b) If ALB, find a and B. Ã=3ā¸+6ā„+ā₂and B = αã¸−2ケ ßā¸‚
Q: the average rate of return for a project that is estimated to yield total income of $401,760 over 4…
Q: Which of the following enols will convert to the ketone on the right upon treatment with acid?
Q: TB Problem 21-167 (Algo) The Murdock Corporation reported the following balance sheet data for 2021…
Q: gnoring the possibility of stereoisomers, what is the IUPAC name of the following substance?…
Q: What is the IUPAC name of the substance shown in the following model? ball & stick + labels
Q: What would be the best sequence of reactions/reagents to use for this transformation (the one that…
Q: What is the molar solubility of Cd(OH)2 in a solution with a pH of 11.25? O 6.75 x 10-12 M O 2.13 x…
Q: You have an object of mass 555 kg, that is a distance 1.0 m above the ground. If we call the ground…
Q: find the directions in which the functions increase and decrease most rapidly at P0 . Then find the…
Q: Evaluating a Trigonometric Expression InExercises 47–52, find the exact value of the…
Q: Evaluate the cylindrical coordinate integral * 0/2* 3+26r² SS S dz r dr dº 00 0
Q: place the following in order of increasing entropy at 298K Ne Xe He Ar Kr
Q: Shaurice has volunteered to participate in a psychology experiment. When she arrives, a lab…
Q: Identify the parent function of f(x) = (x - 4)². Provide your answer below: f(x) =
Q: the process of sublimation happens when which of the following occurs? a liquid becomes a solid a…
Q: Currently what is used as the "base year" in the NIPA accounting system. A) 2010 B) 2012 C) 2008…
Q: Exhibit 9-41 A random sample of 9 students selected from the student body of a high school had an…