How to define simultaneous equations for ODE45
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
alpedhuez
am 30 Mai 2020
Kommentiert: alpedhuez
am 30 Mai 2020
Suppose I have equations

I understand I write
f=@(t,x,a)[x(1)+x(2),x(1)-a*x(2)]
But I hope to define equations one by one f1 and f2 and then combine into f. Please advise.
0 Kommentare
Akzeptierte Antwort
madhan ravi
am 30 Mai 2020
f1 = @(t,x) x(1) + x(2)
f2 = @(t,x,a) x(1)-a*x(2)
F = @(t,x,a) [f1(t,x);f2(t,x,a)]
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Geometric Transformation and Image Registration 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!