Transfer Function,fourth-Order

8 vues (au cours des 30 derniers jours)
durgam alw
durgam alw le 3 Juil 2019
Commenté : durgam alw le 15 Juil 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)

Réponse acceptée

Raj
Raj le 3 Juil 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.
  1 commentaire
durgam alw
durgam alw le 15 Juil 2019
Thank you so much for the answer

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by