By employing MATLAB, perform the Bode plots of magnitude and phase of the system in Example 2 of Section 11.8.1, which gives the transfer function as
G(s)={\frac{5s+10}{s^{3}+s^{2}}}
The input to and output from MATLAB are included in Program Listing 11.8 and Figure 11E8.
Program Listing 11.8
>> num = [0 0 5 10];
>> den = [1 1 0 0];
>> bode(num,den)
>> title(‘Bode Plot of a third order system’)