using ODE to solve coupled equations
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Josh
am 1 Jul. 2016
Kommentiert: Star Strider
am 1 Jul. 2016
Hi,
I am trying to solve a set of coupled equations but keep getting the error, "Attempted to access x(5); index out of bounds because numel(x)=1."
0 Kommentare
Akzeptierte Antwort
Star Strider
am 1 Jul. 2016
You need to define ‘x’ as a (7x1) vector of initial conditions in your call to your ODE solver.
Also, you’re going to encounter problems with ‘x’ in these lines, because you have defined it as a vector:
dxdt(1,:) = x*(Vs - vC)/L + y*(vj1 - vC)/L; % diL/dt
dxdt(2,:) = x*(-Vs - vj1)/Lp1 + y*(-vj1 - L*(vj1 - vC) - vC)/(L*Lp1); % diLp1/dt
dxdt(3,:) = x*(-Vs - vj2)/Lp2 + y*(-vj2 - L*(vj1 - vC) - vC)/(L*Lp2); % diLp2/dt
I suspect that will throw one of may possible errors about dimensions not agreeing. I have no idea what you’re doing, so I can’t offer a solution.
4 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Ordinary Differential Equations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!