Unrecognized function or variable

1 回表示 (過去 30 日間)
Aysel Alimirzayeva
Aysel Alimirzayeva 2022 年 10 月 13 日
コメント済み: Aysel Alimirzayeva 2022 年 10 月 14 日
Hello. I wrote an example of the diskmarginplot function in Matlab 2019Rb version, but it gives an error. Please help me.
  1 件のコメント
DGM
DGM 2022 年 10 月 13 日
Where is diskmarginplot.m? Did you add it to the path or place it in a directory that's on the path?

サインインしてコメントする。

採用された回答

Sam Chak
Sam Chak 2022 年 10 月 14 日
It requires Robust Control Toolbox, the function is introduced in R2020a. Since yours is R2019b, then I think ...
s = tf('s');
G = 0.38*(s^2 + 0.1*s + 0.55)/(s*(s + 1)*(s^2 + 0.06*s + 0.5))
G = 0.38 s^2 + 0.038 s + 0.209 --------------------------------- s^4 + 1.06 s^3 + 0.56 s^2 + 0.5 s Continuous-time transfer function.
diskmarginplot(G)
  1 件のコメント
Aysel Alimirzayeva
Aysel Alimirzayeva 2022 年 10 月 14 日
@Sam Chak Thank you very much.

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by