How to input transfer function without simplifying it?
이전 댓글 표시
Hi everyone,
Normally, we can give numerator = [ 1 0]; denominator =[1 1 4]; and system1=tf(num,den); but if the transfer function is like:
G(s) = {s + 2}/{s(s − 1)(s + 6)^2}
can I add this transfer function without simpligying (I mean without multiplying the denominators)
=> only from s(s-1)(s+6)^2
May be someone can provide some tips.
댓글 수: 1
Walter Roberson
2017년 9월 12일
G = tf([1 2],[1 0]) * tf(1,[1 -1]) * tf(1, [1 6])^2
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Dynamic System Models에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!