Write Matlab function given an ODE and initial conditions
이전 댓글 표시
From this ODE

How do I write a Matlab program that calculates p at time 1.5 time units given a value of k3. I want to do a Matlab function that takes k3 as input and outputs p (1.5)?
Given the following s0 = 2.2, e0 = 2.8, k1 = 11 och k2 = 1.6.
With start values s (0) = s0, e (0) = e0, c (0) = c0 = 0 and p (0) = p0 = 0
댓글 수: 3
Sara Westerlund
2022년 3월 2일
Bjorn Gustavsson
2022년 3월 2일
Why not? They are developed by experts in the field, that have gone to some considerable lengths to provide a suite of different solvers for ODEs with most types of numerical characteristics. If you know the shortcomings of these solvers for your type of ODE then you should also have sufficient competence to "roll your own" solver, but that doesn't fit very well with your "have used Euler's method before".
답변 (1개)
Bjorn Gustavsson
2022년 3월 2일
Have a look at the ODE-examples, both the demos and the corresponding code:
>> odeexamples
That should give you a good starting introduction to how you should go about implementing your ODEs. Then you can also look at the help and documentation to ode45 and its siblings.
HTH
카테고리
도움말 센터 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!