solve by runge kutta method

조회 수: 2 (최근 30일)
Mariam Gasra
Mariam Gasra 2019년 5월 2일
댓글: Jan 2019년 5월 3일
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 solve c matrix by runge kutta method?
  댓글 수: 2
Torsten
Torsten 2019년 5월 3일
And you really think somebody knows what you are asking for ?
Jan
Jan 2019년 5월 3일
A Runge-Kutta method computes an approximated solution of an initial value problem of an ordinary equation system. You cannot "solve a matrix" with it and I do not know, what "solving a matrix" means mathematically.

댓글을 달려면 로그인하십시오.

답변 (0개)

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by