Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional Microsoft SQL Server 2014 Administration

Authors: Adam Jorgensen, Bradley Ball

1st Edition

111885926X, 9781118859261

More Books

Students also viewed these Databases questions