Create a Bode Plot drawing of T(s),
T(s) = {2x10^4} / {(s+10^3)(s+10^5)}
Please show hand written calculations and or mat lab coding to do so, Thank you would really like and appreciate.
MATLAB code to plot the bode plot:
s = tf('s'); % laplace variable
T = 2*10^4/((s+1e3)*(s+1e5)) % transfer function definition
w = logspace(1,7,1e3); % frequency range
figure;bode(T,w);grid on; % bode plot
Get Answers For Free
Most questions answered within 1 hours.