Transfer Function,fourth-Order

10 Ansichten (letzte 30 Tage)
durgam alw
durgam alw am 3 Jul. 2019
Kommentiert: durgam alw am 15 Jul. 2019
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)

Akzeptierte Antwort

Raj
Raj am 3 Jul. 2019
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.

Weitere Antworten (0)

Kategorien

Mehr zu Dynamic System Models finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by