Plot the response of the system to a ramp function and look at the erroг.
a. There is not a function to automatically determine the output for a ramp function applied to the system. However, there is a function, Isim, which finds the output or response of a system to any input.
t=linspace(0,50,500); NOTE: this creates an array of points representing time.
r=0.1"t NOTE: this creates the ramp function of the Week 4 assignment
02=Isim(T.r,t); NOTE: this generates the output from applying the ramp to T
plot(1.02.t.r) NOTE: this plots the output and the input r
Take a screenshot of the resulting plot.



Answer :

Other Questions