Plot rlocus on an UIAxes of AppDesigner
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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.
0 Commenti
Risposte (1)
Abisay Sigar
il 10 Lug 2021
[r,k] = rlocus(sys);
f = figure;
rlocus(sys);
rl = findobj(f, 'Type', 'Axes')
copyobj(rl.Children, app.UIAxes);
delete(f);
0 Commenti
Vedere anche
Categorie
Scopri di più su Classical Control Design in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!