Holooly Plus Logo

Question E.6: Use MATLAB to obtain the Bode plots of G(s) = s³/s³ + 14.8s²......

Use MATLAB to obtain the Bode plots of

G(s)  =  \frac{s³}{s³   +   14.8s²  +   38.1 s   +   2554}

The 'Blue Check Mark' means that either the MATLAB code/script/answer provided in the answer section has been tested by our team of experts; or the answer in general has be fact checked.

Learn more on how do we answer questions.

Script File

With the explanation previously given, we develop the MATLAB code as shown here.

% for example e.6
num=[1   0   0   0];
den = [1   14.8   38.1   2554];
w = logspace(-1 , 3);
bode(num,  den,  w);
title(‘Bode plot for a highpass filter’)

Running the program produces the Bode plots in Fig. E.13. It is evident from the magnitude plot that represents a highpass filter.

تعليق توضيحي 2023-03-22 191841

Related Answered Questions

Question: E.3

Verified Answer:

For the four meshes,   - 6  +  9I_{1} -  4 ...
Question: E.4

Verified Answer:

As usual, we convert the circuit in the time-domai...
Question: E.1

Verified Answer:

Question: E.2

Verified Answer:

At node 1, 2 = \frac{V_{1}  -  V_{2}}{4} +...