I have system matrices (A) , (B) , (C) and (D) how do I find the Transfer Function for them ?, knowing that it is (a fourth-Order Transfer Function)
Where the A matrix is (4×4)

 採用された回答

Raj
Raj 2019 年 7 月 3 日

1 投票

A=rand(4,4) % 4th order system
B= rand(4,2) % Assuming you have two inputs
C=ones(size(A))
D=zeros(size(B))
system=ss(A,B,C,D)
tf(system) % will give you transfer functions from each input to each output.

1 件のコメント

durgam alw
durgam alw 2019 年 7 月 15 日
Thank you so much for the answer

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeDynamic System Models についてさらに検索

質問済み:

2019 年 7 月 3 日

コメント済み:

2019 年 7 月 15 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by