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);

카테고리

Help CenterFile Exchange에서 Energy Production에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by