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

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 ...

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 ...

Mine safety amp environmental engineering assignment -part

Mine Safety & Environmental Engineering Assignment - Part 1 - Questions 1. Occupational health and safety is the primary factor that needs to be considered in the mining industry. Discuss this statement. 2. Define the fo ...

Projectflow processing of liquor in a mineral refining

Project Flow Processing of Liquor in a Mineral Refining Plant The aim of this project is to design a flow processing system of liquor (slurry) in a mineral (aluminum) refining plant. Aluminum is manufactured in two phase ...

Learning outcomes evaluate multiuser communication and

Learning Outcomes Evaluate multiuser communication and resource sharing techniques; Apply the techniques of, and report on, digital communication applications using Matlab and hardware devices. Assignment Description The ...

Operations engineering assignment -please select only one

Operations Engineering Assignment - Please select only one of the following case studies for your assignment: CASE A. Tesla Motors Tesla is an innovative manufacturer that designs, assemble and sells fully electric vehic ...

Select a risk problem from the list below and prepare a

Select a risk problem from the list below and prepare a risk management plan in accordance with AS/NZS ISO 31000:2009. Please ensure that: - Establish the context clearly, in accordance with the Standard; - Define your s ...

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 ...

Task 1using the lab kit design a circuit for the processor

Task 1: Using the lab kit, design a circuit for the processor to control the output of a connected 7-segment LED display device. You will be provided with a standard common anode 7-segment display of the type FND-507 (or ...

Control theory - lab reportsfor experiments 1 to 4 you must

Control Theory - Lab Reports For experiments 1 to 4 you must undertake the following: a) At the start of each section (including the pre-lab activities) there are a number learning outcomes. That is, what students should ...

  • 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