Presentation is loading. Please wait.

Presentation is loading. Please wait.

Introduction To MATLAB

Similar presentations


Presentation on theme: "Introduction To MATLAB"— Presentation transcript:

1 Introduction To MATLAB
Analysis of control Systems using Control System Toolbox 5/14/2019

2 Transfer Function = 100 G(S) S2+14S+100
This transfer function can be stored into the MATLAB num = 100; den = [ ]; sys=tf(num,den) To check your entry you can use the command printsys as shown below: printsys(num,den); 5/14/2019

3 Poles & Zeros We can find poles with the help of following MATLAB command. poles = roots(den) We can find Zeros with the help of following MATLAB command zeros = roots(num) 5/14/2019

4 contd….. Poles & Zeros We can plot the poles of the above transfer function marked by the symbol ‘x’. plot(poles,’x’) To plot the poles and zeros of any transfer function there is a built in function pzmap in the MATLAB pzmap(num,den) 5/14/2019

5 contd….. Poles & Zeros Exercise: For the transfer function given below plot the pole-zero map. G(S) = S2 +3S+ 5 S3+4S+10 5/14/2019

6 End of Tutorial You can Download this tutorial from
End of Tutorial 5/14/2019


Download ppt "Introduction To MATLAB"

Similar presentations


Ads by Google