필터 지우기
필터 지우기

Close-loop TF Calculation

조회 수: 3 (최근 30일)
Manuel Robles Villamarin
Manuel Robles Villamarin 2021년 2월 21일
편집: Walter Roberson 2021년 2월 21일
Hello,
I am trying to do a close-loop TF Calculation but I get an error:
Gc=(32.8802(s+3)/s(s+7)(s+8.52))
Gc=(32.8802(s+3)/s(s+7)(s+8.52))
Error: Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise,
check for mismatched delimiters.
CAN YOU HELP TO UNDERSTAND WHAT IS GOING ON? THANK YOUUUUUU!!!

답변 (1개)

David Wilson
David Wilson 2021년 2월 21일
You need a few multiplies.
s = tf('s')
Gc= 32.8802*(s+3)/s/(s+7)/(s+8.52)
Now you can perform step or bode or whatever.

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by