How to convert state space to transfer function
354 次查看(过去 30 天)
显示 更早的评论
I have the following state space:
Where x is 12 by 1, A is 12 by 12, B is 12 by 3, w is 12 by 1, y is 6 by 1, H is 6 by 12, and v is 6 by 1. How can I convert this to transfer functions in MATLAB? I wanted to use the ss2tf command but I realized that it takes the state space in the format of:
Which is not what I have.
0 个评论
采纳的回答
Sam Chak
2023-7-26
I think you can rearrange the matrices manually because
can be expressed as
.
So, if , then in compact form, it looks like
.
Now you should be able to use ss2tf(A, B, C, D).
4 个评论
Sam Chak
2023-7-26
According to the theoretical mathematics presented, and based on the info you provided, It should work. Have you tried and show us the result? Here is an example:
A = [0 1; % state matrix
-1 -2];
G1 = [0; % input matrix of u
1]
G2 = eye(2) % input matrix of w
G3 = zeros(2, 3) % input matrix of v
B = [G1 G2 G3]; % augmented input matrix B
C = [1 0]; % state matrix
D = [0, 0 0, 1 1 1]; % augmented direct feedforward matrix D
% State-Space Model
sys = ss(A, B, C, D)
% Transfer functions
P = tf(sys) % predicted number of TFs: 1*6 = 6 Tfs
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dynamic System Models 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!