'lqr' requires Control System Toolbox.
Afficher commentaires plus anciens
I've tried every possible option to check the error in this simple code. But Matlab throws me this error:
'lqr' requires Control System Toolbox.
Error in LST_lqrhw (line 19)
[K, S, e] = lqr(A, B, Q, R);
Can anyone help me with this or suggest an alternate method?
clear
clc
close all
A = [0 1;
1 1];
B = [1;
0];
Q = [1 0;
0 1];
R = [1;
0];
[K, S, e] = lqr(A, B, Q, R);
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Tuning Goals dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!