Zeigler-Nichols reaction curve

5 visualizaciones (últimos 30 días)
Ainars Cernavskis
Ainars Cernavskis el 20 de En. de 2022
Comentada: Mathieu NOE el 2 de Feb. de 2022
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);

Respuestas (1)

Mathieu NOE
Mathieu NOE el 21 de En. de 2022
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);

Categorías

Más información sobre Energy Production en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by