I need help on Kalman filter generated from state space matrices (A, B,C,D). How can I generate my output using lsim?
Mostra commenti meno recenti
This is how I generated my matrices below
load('linsys.mat');
A = linsys1.A;
B = linsys1.B;
C = linsys1.C;
D = linsys1.D;
Plant = ss(A,B,C,D);
I then use..
Q = 1;
R = 1;
[kalmf,L,P] = kalman(Plant,Q,R)
I don't know know how to proceed from here.
2 Commenti
Awak Mathok
il 2 Nov 2021
Awak Mathok
il 2 Nov 2021
Modificato: Awak Mathok
il 2 Nov 2021
Risposte (0)
Categorie
Scopri di più su State-Space Control Design and Estimation in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!