필터 지우기
필터 지우기

Root locus plot unable to see properties

조회 수: 19 (최근 30일)
Bram Asselman
Bram Asselman 2018년 5월 23일
댓글: 지완 이 2023년 12월 1일
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.

채택된 답변

Aditya Salveru
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
Avdhesh Kumar
Avdhesh Kumar 2022년 2월 5일
same here, not wokring.
I've even copied the same code still not working
Carlos González Osorio
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
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 CenterFile Exchange에서 Classical Control Design에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by