How to scale the axes for root locus?

78 views (last 30 days)
John Doe
John Doe on 2 Aug 2020
Hello everyone. I am trying to use the command rlocfind to find a gain value.
rlocus(num,den)
axis([-22 3 -15 15])
zeta=0.7;
Wn=1.8;
sgrid(zeta, Wn)
[K poles] = rlocfind(num,den);
The code output is :
I can easily pick a point greater than 1.8 with the cursor here.
figure
axis([-22 3 -15 15])
rlocus(numo,deno)
sgrid(zeta,Wn)
[Kp poles]=rlocfind(numo,deno)
The code output is :
In this portion, I cannot even see where is my point of 1.8. What I sense is, the axis scaling is wrong here, that is why it is not showing up. Is there any way or command so that the graphs will be squeezed like the first output automatically without any axis scaling? I do not want to manually set all these axis scaling values and seems like a hassle to me.
Any solution? Thanks in advance!

Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!