How to solve matrix in characteristic equation?

8 次查看(过去 30 天)
Given the system matrix A=[0 1 0 0;3 0 0 2; 0 0 0 1; 0 -2 0 0] and B=[0 0;1 0;0 0;0 1], From the characteristic equation det(A-BF) the eigenvalues{-1,-3,-5,-8} are found. How do I reverse the process to find the gain F?
  5 个评论
Tianyi Chai
Tianyi Chai 2022-5-9
Sorry for the confusion guys here is the complete question, which I misst the system is single-input single-output
Torsten
Torsten 2022-5-9
编辑:Torsten 2022-5-9
If it is satisfactory for you, you should then accept Sam's answer.

请先登录,再进行评论。

采纳的回答

Sam Chak
Sam Chak 2022-5-9
This is actually very easy if you know algebra and solving simultaneous equations on the desired characteristic equation (from the eigenvalues) and the actual characteristic equation found from . The fancy name for this method is called Pole Placement:
A = [0 1 0 0; 3 0 0 2; 0 0 0 1; 0 -2 0 0] % state matrix
B = [0 0; 1 0; 0 0; 0 1] % input matrix
p = [-1 -3 -5 -8] % desired poles
F = place(A, B, p) % Pole placement design to calculate the control gain matrix F
% check the result
eig(A-B*F)
For more info, please check:

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Formula Manipulation and Simplification 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by