Error using step function. Not enough input arguments. Please help me solve this error in the following code. I need to find the step response of the the following function but the error of not enough input arguments is showing up

 채택된 답변

Right idea, wrong Toolbox.
Try this:
s = tf('s');
K=1
Ga=10/(s+5);
Gp=0.1/(s*(s+1));
Gc=K;
g=Ga*Gp*Gc;
figure
step (g)
This is appropriate for the Control System Toolbox.
It would be appropriate to experiment a bit with it, particularly because:
step_info = stepinfo(g)
indicates that there are problems.
.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Chemistry에 대해 자세히 알아보기

질문:

2020년 7월 28일

댓글:

2020년 7월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by