Question: Write a MATLAB code to evaluate the output of the unknown system from Semmlow Ex 5 . 1 ( unknown _ sys 5 _ 1

Write a MATLAB code to evaluate the output of the unknown system from
Semmlow Ex 5.1(unknown_sys5_1.mat code in appendix) according to
1) an impulse at 1s (i.e.,0 all other time) and
2) a unit step input beginning at 0.5s (i.e.,0 before then). The code should produce a single figure with two vertical subfigs, one for each input/output function pair. Both should have labeled x and y axes, titles, and demonstrate three normalized functions/waveforms in time. Start with the code provided in the Appendix below. Provide the code in Plain text as well.
Appendix:
%unknown_sys5_1
function y = unknown_sys5_1(x)
% Function to simulate an unknown second-order system
A =[1.0-1.98890.9890];
B =[.1594.03067.1534]*.0001;
y = filter(B,A,x);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!