Filter löschen
Filter löschen

how to solve this matrix by adams bashforth matlab

1 Ansicht (letzte 30 Tage)
Mariam Gasra
Mariam Gasra am 2 Mai 2019
Kommentiert: Jan am 3 Mai 2019
lamda1=0.2;
mu1=1-lamda1;
lamda2=0.3;
mu2=1-lamda2;
A=[-(lamda1+lamda2) mu2 mu1 0;lamda2 -(mu2+lamda1) 0 mu1;lamda1 0 -(lamda2+mu1) mu2;0 lamda1 lamda2 -(mu1+mu2)];
B=[1;0;0;0];
C=A*B;
how can i get the C matrix by adams bashforth matlab
  3 Kommentare
Walter Roberson
Walter Roberson am 3 Mai 2019
https://www.mathworks.com/matlabcentral/fileexchange/63034-adams-bashforth-moulton-method
Jan
Jan am 3 Mai 2019
See my comment to your question asking for the Runge Kutta method:
An ODE integrator computes an approximated solution of an initial value problem of an ordinary equation system. Here you provide some code to compute a matrix. So there is no need to call in integrator anymore.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by