필터 지우기
필터 지우기

how to copy the figure from root locus editor

조회 수: 14 (최근 30일)
Mohammad Wasi Ahmadi
Mohammad Wasi Ahmadi 2017년 8월 2일
편집: Mohammad Wasi Ahmadi 2018년 10월 16일
I am using Matlab 2016a, where I ploted root locus for a system in rltool, but could not trace how to copy the figure().

채택된 답변

Brian Hannan
Brian Hannan 2017년 8월 4일
You can do this by exporting your transfer function from the Control System Designer to the MATLAB workspace and then plotting the root-locus in MATLAB.
As an example, you can run the commands
h = tf([2 5 1], [1 2 3]);
rltool(h);
and then select Export, select LoopTransfer_C, and hit the Export button. LoopTransfer_C is now in the MATLAB workspace. Now use
rlocus(LoopTransfer_C)
to recreate the root-locus figure.

추가 답변 (0개)

카테고리

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