how to copy the figure from root locus editor
17 ビュー (過去 30 日間)
古いコメントを表示
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().
0 件のコメント
採用された回答
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Classical Control Design についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!