Effacer les filtres
Effacer les filtres

State Space in lsim keeps returning 'Matrix dimensions must agree'

2 vues (au cours des 30 derniers jours)
A = [1 0 0 0; 0 -1 0 0; 0 0 -2 0; 0 0 0 -3];
B = [1 0; -1 1; 0 -1; 1 -1];
C = eye(4);
D = 0;
X0 = [-2; -1; 1; 2];
EvA = eig(A);
sys = ss(A,B,C,D);
AT = transpose(A)
BT = transpose(B)
t = linspace(0,3);
t0 = 0;
tfinal = 3;
Wc = integral(@(t) integrand(t,t0,A,B),t0,tfinal,'ArrayValued',true);
IW = inv(Wc)
phi = exp(AT.*(-t));
u = -BT*phi*IW*X0;
lsim(sys, u, t, X0)
grid on
Matrix dimensions must agree.
Error in HW3_1 (line 17)
phi = exp(AT.*(-t));
I know it has to do with t, so any recommendations?

Réponse acceptée

Anthony Sirico
Anthony Sirico le 12 Fév 2021
t has to be 1x4.

Plus de réponses (0)

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by