Transfer Function,fourth-Order
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
durgam alw
el 3 de Jul. de 2019
Comentada: durgam alw
el 15 de Jul. de 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)
0 comentarios
Respuesta aceptada
Raj
el 3 de Jul. de 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.
Más respuestas (0)
Ver también
Categorías
Más información sobre Dynamic System Models en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!