Answered step by step
Verified Expert Solution
Question
1 Approved Answer
% CSD Bode plot of the system G(s) =10/(s+1) num=10; den= [1 1]; w=logspace (-1,1); [mag, phase]=bode (num, den, w); magb=20*log10(mag); figure(1), semilogx (w,
% CSD Bode plot of the system G(s) =10/(s+1) num=10; den= [1 1]; w=logspace (-1,1); [mag, phase]=bode (num, den, w); magb=20*log10(mag); figure(1), semilogx (w, magb), title( 'Magnitude response in dB'), grid, figure(2), semilogx (w, phase), title('Phase response in deg'), grid 12345 Command Window New to MATLAB? See resources for Getting Started. >> CSD_fig2p10_code 'bode' requires one of the following: Control System Toolbox System Identification Toolbox Error in CSD_fig2p10_code (line 2) num=10; den= [1 1]; w=logspace(-1,1); [mag,phase]=bode (num, den,w); fx >>
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started