Plot rlocus on an UIAxes of AppDesigner

조회 수: 10 (최근 30일)
Guillermo Rubio
Guillermo Rubio 2018년 6월 28일
답변: Abisay Sigar 2021년 7월 10일
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.

답변 (1개)

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

카테고리

Help CenterFile Exchange에서 Classical Control Design에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by