rlocus pole assignment in plot does not match output matrix
1 次查看(过去 30 天)
显示 更早的评论
As far as I understand, using
[R, ~ ] = rlocus(sys);
should return the positions of the poles for different Kp. R has one row for each pole, but the values do not match the displayed paths of the poles.
E.g.
sys = s/(s^2+0.5*s+1);
rlocus(sys)
R = rlocus(sys)'
displays two poles:
1. pole goes from (-0.25,0.968j) to (0,0)
2. pole goes from (-0.25,-0.968j) to (-2,0)
However, in the R matrix, the paths are somehow scrambled, i.e. the first pole goes from (-0.25,0.968j) to (-2,0) and the second one goes from (-0.25,-0.968j) to (0,0). I suppose that since they "meet" in the middle one cannot really know which pole goes which way, but it still seems strange that rlocus would plot something different than its output? Is there a way to fix that?
Thanks!
0 个评论
回答(0 个)
另请参阅
类别
在 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!