Close-loop TF Calculation
1 次查看(过去 30 天)
显示 更早的评论
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!!!
0 个评论
回答(1 个)
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 Center 和 File Exchange 中查找有关 Feature Detection and Extraction 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!