[Z,P,K]=tf2zp(num,den);
Za=[Z;numlead]; %Add Zeros to the GML system
Pa=[p;denlead]; %Add poles to the GML system
[num2,den2]=zp2tf(Za,Pa,K);
sys=tf(num2,den2);
KK=0.991112 %compensated system
sys2=zpk(Za,Pa,(KK*K));
t=0:0.005:10
rlocus(sys);
T=feedback(sys2,1);
step(T,t); %Reaponse of the Close-loop system
校正后系统的根轨迹如下图所示: