Zeigler-Nichols reaction curve

5 ビュー (過去 30 日間)
Ainars Cernavskis
Ainars Cernavskis 2022 年 1 月 20 日
コメント済み: Mathieu NOE 2022 年 2 月 2 日
Hello so am trying to find a Zeigler-Nichols reaction curve but every time when i run the command i get an error and i dont know how to fix it ,any help would be great
t=0:0.01:3.0;
opensys=tf(5,conv[1,18,89,87]);
y_opensys=step(opensys,t);
plot(t,y_opensys);

回答 (1 件)

Mathieu NOE
Mathieu NOE 2022 年 1 月 21 日
hi
probably you wanted to do this :
t=0:0.01:3.0;
opensys=tf(5,conv([1 18],[89 87]));
y_opensys=step(opensys,t);
plot(t,y_opensys);
  1 件のコメント
Mathieu NOE
Mathieu NOE 2022 年 2 月 2 日
hello
problem solved ?

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

カテゴリ

Help Center および File ExchangeEnergy Production についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by