Close-loop TF Calculation

1 vue (au cours des 30 derniers jours)
Manuel Robles Villamarin
Manuel Robles Villamarin le 21 Fév 2021
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!!!

Réponses (1)

David Wilson
David Wilson le 21 Fév 2021
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.
  1 commentaire
Manuel Robles Villamarin
Manuel Robles Villamarin le 21 Fév 2021
THANK YOU!!!!

Connectez-vous pour commenter.

Catégories

En savoir plus sur Feature Detection and Extraction dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by