You are on page 1of 1

%Plot the ROOT LOCUS of the following open loop TF

%G(s).H(s)=8.16/(s*(s+3)*((s^2)*2*s+2))
clc;
clear all;
close all;
num=[0 0 0 0 8.16];
den=[1 5 8 6 0];
a=tf(num,den);
rlocus(a)
grid on;

Published with MATLAB® R2016b

You might also like