Transfer Function,fourth-Order

조회 수: 13 (최근 30일)
durgam alw
durgam alw 2019년 7월 3일
댓글: durgam alw 2019년 7월 15일
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일
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개)

카테고리

Help CenterFile Exchange에서 Dynamic System Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by