Factorize transfer function
古いコメントを表示
I need to divide my transfer function into 2 transfer functions in such way that S2 = S1' Actually I have product of S2*S1
s = tf('s')
Suu = -1.6/((s-4)*(s+4))
Sux = -0.8/((s+4)*(s-4)*(s^2 + 0.1*s + 1))
Sxx = 0.3*(s - 4.163)*(s + 4.163)/((s+4)*(s-4)*(s^2 - 0.1*s + 1)*(s^2 + 0.1*s + 1))
Sxu = Sux'
SxdSdx = Sxx - (Sxu*Sux)/Suu
How to determine Sxd and Sdx if Sxd = Sdx' ? Anybody can help me?
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Library Domains についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!