my root locus plot wont show the datatip

i have a root locus plot here:
k = 1;
s = tf('s');
Gs = 1/(s^2+s);
Ks = k*(s+2)/(s+10);
sys = Gs*Ks/(1+Gs*Ks);
rlocus(sys);
But the problem is that, whenever i click on the line, the data won't display, just x and y coordinate. is there any fix to this?

Antworten (2)

Kiran Felix Robert
Kiran Felix Robert am 28 Aug. 2020

2 Stimmen

Hi Zain,
I assume that you are using the MATLAB live editor for root locus plot. This is a known issue, it is reported to the developers and the concerned people are looking into it.
One known workaround is to:
1. Create the root locus plot with either 'rlocus' command or the 'rlocusplot' command from a MATLAB script file or the command line.
2. Then use data cursor to examine various points of the root locus plot.
Kiran Felix Robert

7 Kommentare

Zain Ahmed
Zain Ahmed am 28 Aug. 2020
I wan't the developers to fix that issue immediately
Matteo Ceriotti
Matteo Ceriotti am 12 Nov. 2020
The fact that the "interactive" features of some plots such as Bode diagrams, Root loci and p-z maps do not work in the live editor is big deal for me. One of the advantages of the live editor is to show step-by-step how the code works to students, and interactively explore results and changes, but this is a major feature which is lacking.
Mansouri Hajar
Mansouri Hajar am 7 Okt. 2021
October 2021 and it still doesn't work !!
hey so i was dealing with the same problem, copy the code into a script file, it worked for me
Junyao Liu
Junyao Liu am 9 Okt. 2022
Hi Kiran, is there any update on this for r2022b? The data still don't show besides (X,Y) in the live editor, and I just don't like to use .m if I can help it
Henry Asa
Henry Asa am 12 Apr. 2023
Any estimates/updates on when this will be fixed? I prefer using live scripts but this functionality is critical.
sihan zhang
sihan zhang am 5 Mai 2023
Bearbeitet: sihan zhang am 5 Mai 2023
still not working on the R2022b version

Melden Sie sich an, um zu kommentieren.

Ahmad
Ahmad am 8 Jan. 2024

0 Stimmen

clear all;clf;
numerator = [1 4];
denominator = [1 8 7 0];
sys = tf(numerator, denominator);
rlocus(sys);
grid on;
title('Root-Locus L(s) = s+4/s^3+8s^2+7s')

Produkte

Version

R2019b

Gefragt:

am 25 Aug. 2020

Beantwortet:

am 8 Jan. 2024

Community Treasure Hunt

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

Start Hunting!

Translated by