Question 2.9.3: Ramp Response with the lsim Function Plot the forced respons...
Ramp Response with the lsim Function
Plot the forced response of
ẍ + 3ẋ + 5x = 10f(t)
to a ramp input, u(t) = 1.5t, over the time interval 0 ≤ t ≤ 2.
We choose to generate the plot with 300 points. The MATLAB session is the following.
≫t = linspace(0,2,300);
≫f = 1.5*t;
≫sys = tf(10, [1, 3, 5]);
≫[y, t] = lsim(sys,f,t);
≫plot(t,y,t,f),xlabel('t'),ylabel('x(t) and f(t)'),...
gtext('x(t)'),gtext('y(t)')
The plot is shown in Figure 2.9.7.

Related Answered Questions
Question: 2.1.6
Verified Answer:
We cannot use Table 2.1.1 for this part because th...
Question: 2.9.2
Verified Answer:
Question: 2.3.3
Verified Answer:
Note that from the Euler identity, e^{j\the...
Question: 2.7.7
Verified Answer:
a. The denominator roots are s = −3 ± 5j. To avoid...
Question: 2.7.5
Verified Answer:
There are four repeated roots (s = 0) and one dist...
Question: 2.7.4
Verified Answer:
Taking the transform of both sides of the equation...
Question: 2.7.2
Verified Answer:
The denominator roots are s= −12/3= −4, s=0, and s...
Question: 2.7.1
Verified Answer:
Using the Laplace transform method, we have
[latex...
Question: 2.6.6
Verified Answer:
Because f(t) = 𝛿(t), F(s) = 1, and
X(s)=\fr...