Solve ODE using backward euler's method
이전 댓글 표시
x' = λ - ρx - βxz;
y' = βxz - δy;
z' = py - cz;
x0=43100; y0 = 0, z0 = 0.0033, λ = 388, ρ = 0.009 δ = 0.18, p = 50000, c = 23, β=3.61e-8
Is there a built-in function in matlab to solve the above non-linear system using the backward euler's method?
채택된 답변
추가 답변 (1개)
Walter Roberson
2015년 12월 12일
1 개 추천
No, there is no built-in function in MATLAB for that.
댓글 수: 2
Walter Roberson
2015년 12월 13일
But perhaps one of the File Exchange contributions would be useful: http://www.mathworks.com/matlabcentral/fileexchange/31427-1st-oder-ode-solver-euler-backward-method-based
KC
2015년 12월 13일
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!