why iam getting error
9 ビュー (過去 30 日間)
古いコメントを表示
tf1 = tf(1, 0.08 1):
tf2 = tf(1,0.03 1):
tf_series = tf1 * tf2
0 件のコメント
回答 (1 件)
Walter Roberson
2024 年 3 月 9 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!