why iam getting error
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
tf1 = tf(1, 0.08 1):
tf2 = tf(1,0.03 1):
tf_series = tf1 * tf2
0 commentaires
Réponses (1)
Walter Roberson
le 9 Mar 2024
The colon operator always has to be followed by a second parameter, except when it is being used as the sole index to an array.
tf1 = tf(1, [0.08 1]);
tf2 = tf(1, [0.03 1]);
tf_series = tf1 * tf2
0 commentaires
Voir également
Catégories
En savoir plus sur Operators and Elementary Operations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!