Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Other Engineering Expert

Assignment -

Problem 1 - Given is the LCC difference equation that represents some LTI system:

y(n) - ¾y(n-1) - ¼y(n-2) = x(n) + x(n-1)  

a) Find the impulse response of the system (solve the LCCDE).

b) Draw a block diagram of the system in Direct Form I.

c) Is the system stable? Justify!

Problem 2 - Given is the LCC difference equation that represents an LTI system:

y(n) - y(n-1) + ¼y(n-2) = 2x(n)

a) Find the impulse response of the system. Is the system stable?

b) Draw a block diagram of the system in Direct Form II.

c) Find the response of system to the input x(n) = 4(1/2)nu(n) and assume y(-1) = 2, y(-2) = 8.

Problem 3 - In many DSP applications, it is necessary to estimate (and subsequently remove) the DC bias from the input signal. Given is a C-function (not the best code example) and the Matlab equivalent to estimate the DC component of a signal. The dc_est is initialized and the function is called repeatedly for each new sample of the input signal. Each time it is called, the function receives the current value of the input signal (x_n) and returns the current estimate of the DC value of that signal. It takes some time before the dc_est converges to the true DC value. We can view the function as an LTI system with constant coefficients, with input x(n) and output y(n) (equal to the current value of dc_est).

/* C- FUNCTION */

#define ALPHA 0.001

double dc_est = 0; /* global dc-estimate initialized to 0 */

double dc_estimator(double x_n)

{

dc_est = dc_est + ALPHA *(x_n - dc_est);

return dc_est;

}

EQUIVALENT MATLAB FUNCTION

function dc_est = dc_estimator( x_n )

global dc_est % initialized to 0 prior to calling the function for the first time

ALPHA = 0.001;

dc_est = dc_est + ALPHA*(x_n - dc_est);

end

a) Write the difference equation that corresponds to the DC estimator system.

b) Assuming input signal x(n) = 5 u(n), solve the difference equation and provide the analytical expression for the output in terms of parameter ALPHA. (Note: the initial condition is given above).

c) Assuming x(n) = 5 u(n) and ALPHA = 0.001, how many samples n will it take for the output i.e. "dc_est" to be within 1% of the actual DC value? If the sampling rate is 48000 Hz, how much time (in milliseconds) will take the output to be within 1% of the DC value?

d) Repeat part c) for ALPHA=0.01.

e) Roughly sketch or plot the output of the dc_estimator system to the input in part c) for ALPHA=0.001 and for ALPHA=0.01 Draw a block diagram of the system in Direct II form.

f) Let x(n) = 10 sin(w0n)u(n), where w0 = π/2. What is the DC component of this signal (for n ≥ 0)? Assume we feed this signal into the dc_estimator system and let enough time pass so that the steady-state is reached i.e. the homogeneous part of the response of the system is no longer present. Thus, for this part, it is only necessary to find the particular solution of the equation.

Questions for part f):

Find the particular solution to the sinusoidal input.

How do we know that homogenous response will no longer be present for large enough n?

What is the maximum deviation of the dc_estimator response from the true DC value?

What happens to this maximum deviation when ALPHA=0.001 vs ALPHA=0.01.

Other Engineering, Engineering

  • Category:- Other Engineering
  • Reference No.:- M93127366

Have any Question?


Related Questions in Other Engineering

1 online discussion forum - post your proposed topic and

1. Online Discussion forum - Post your proposed topic and chosen data set as well as a short plan for the project. This is required for approval of the topic. As discussed, students must select unique topics, therefore i ...

Engineering materials term paper assignment -conduct a

ENGINEERING MATERIALS TERM PAPER ASSIGNMENT - Conduct a thorough literature search and write a 15-20 page technical review paper on the evolution of the engineering materials used in the manufacturing of any one of the f ...

Question 1 define rock mechanics discuss the main

Question 1 . Define rock mechanics. Discuss the main objectives of the application of rock mechanics in mining. Question 2. Define stress. Draw a diagram and define the normal and shear stress by resolving the resultant ...

Introduction to engineering design assignment -

Introduction to Engineering Design Assignment - Drafting Question 1 - Field notes and traverse drawing may be an outdated form of keeping and presenting information on the position of features on a site. Modern electroni ...

Assessment practical reportproduce a short technical report

Assessment: Practical Report Produce a short technical report in a form consistent with proteomic journals covering the techniques, results and interpretation of your proteomics experiment in the practical classes. The r ...

Question - show that the zero-point energy of a simple

Question - Show that the zero-point energy of a simple harmonic oscillator does not contribute to its entropy or heat capacity, but does contribute to its energy and Helmholtz function.

A detailed review of spatial modulation and simulation

A Detailed Review of Spatial Modulation and Simulation Learning Outcomes a. Learn how to model mobile communication channels d. Discern knowledge development and directions on the recent advances in 4G to the research pr ...

Engineering analysis homework -for every problem provide

Engineering Analysis Homework - For every problem, provide The MATLAB script/function files that solve the problems. Problem 1: Write a script that solves the problem. For (c), show results of the evaluation of every ind ...

Load fault level analysis amp protection design of a remote

LOAD, FAULT LEVEL ANALYSIS & PROTECTION DESIGN OF A REMOTE AREA MICROGRID Assignment Please undertake the following analyses: 1. Calculate the 3-phase fault levels on Bus 2, Bus 3 and Bus 4 with the main supply connected ...

Register design a cpu register is simply a row of

Register design A CPU register is simply a row of flip-flops (i.e. SR, JK, T, etc) put side by side in an array to make the size of register required. For example, an 8 bit register has 8 flip-flops side by side for stor ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As