Plot rlocus on an UIAxes of AppDesigner

9 Ansichten (letzte 30 Tage)
Guillermo Rubio
Guillermo Rubio am 28 Jun. 2018
Beantwortet: Abisay Sigar am 10 Jul. 2021
Trying to plot rlocus of a dynamic SISO system in an UIAxes of AppDesigner, it seems that rlocusplot is not compatible with that kind of Axes.
Is there any way to do that quicker than obtaining the location of the roots in the complex plane with
[r,k] = rlocus(sys)
and plot them manually?
Thank you in advance for any help.

Antworten (1)

Abisay Sigar
Abisay Sigar am 10 Jul. 2021
[r,k] = rlocus(sys);
f = figure;
rlocus(sys);
rl = findobj(f, 'Type', 'Axes')
copyobj(rl.Children, app.UIAxes);
delete(f);

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by