why iam getting error
이전 댓글 표시
tf1 = tf(1, 0.08 1):
tf2 = tf(1,0.03 1):
tf_series = tf1 * tf2
답변 (1개)
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
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!