Type of a System Use the following data to verify your conclusion about the type
ID: 1716191 • Letter: T
Question
Type of a System Use the following data to verify your conclusion about the type of each system in homework problem 1. You do not have to use MATLAB for this part. Input1 = {0 1 3 2) Input2 = {5120} Input3 = (2 times Input 1-3 times Input 2) Input4 = Input I displaced by 5 sample times. Show your results in a table. Direct Solution of a Difference Equation Use the MATLAB programs developed in the homework to determine and plot responses for the two systems in homework problem 2 for the following inputs and zero initial conditions x(n) = d(n), n = 0. I, 2.... etc. x(n) - u(n). n = 0. 1.2 etc. x(n) = [2 3 -5 6 7 15 6 22 -7 2 28 5], n = 0. 1,2,... etc. Describe the operation implemented by each of the system. LT1 System Analysis Using Z-transform Use MATLAB functions to determine the poles, zeros. DC gain, impulse response, and step response for each of the system in homework problem 2. Present plots of the impulse and step responses for the two systems. Convolution Use the MATLAB's convolution function to determine the time domain response for the system in homework problem 2a for the inputs sequences in homework problem 4.Explanation / Answer
(1)
>> Input1=[0 1 3 2];
>> Input2=[5 1 2 0];
>> Input3=(2*Input1 -3*Input2);
>> Input4=5*[0 1 3 2];
>> disp(Input1)
0 1 3 2
>> disp(Input2)
5 1 2 0
>> disp(Input3)
-15 -1 0 4
>> disp(Input4)
0 5 15 10
>>
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.