Root locus plot unable to see properties
52 次查看(过去 30 天)
显示 更早的评论
The mathworks site states: "click anywhere on the curve to activate a data marker that displays the gain value, pole, damping, overshoot, and frequency at the selected point." However, clicking on the plot doesn't do anything, in other words: I'm unable to activate a data marker that displays the required properties.
0 个评论
采纳的回答
Aditya Salveru
2018-5-23
编辑:Aditya Salveru
2018-5-23
Hi Bram,
you have to use 'rlocus' function with the transfer function as input then a window opens up showing the root locus plot.
You can click on any of the point on the root locus to see the properties at that point.
I am attaching a screenshot and also the code I used to achieve the same. It was working as intended.
num=[1 2];
den=[ 1 2 1];
t=tf(num,den) ;
rlocus(t);
Please do check the procedure and make sure you are clicking on the curve only and not elsewhere.
Thank you,
Aditya.
4 个评论
Carlos González Osorio
2022-3-2
Same too, There is a option where can "activate" this option?
Just appears the value of the axes "X" and "Y" and that's it
更多回答(1 个)
Prajwal
2022-11-9
Hello, it is true that by using the rlocus(); command you can plot the root locus but the catch is that you CANNOT see the properties of the points if you are running your code in the livescript. You should use the >>command window with the same command and then you will be able to see the properties of the point in the root locus.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Classical Control Design 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!