Runge Kutta Method With Matlab
Afficher commentaires plus anciens
PLEASE HELP ME :)
Consider the initial value problem
y’ = t^2 + y^2, y(0) = 1.
Use the Runge-Kutta method or another method to find approximate values of the solution at t = 0.8,0.9,and 0.95. Choose a small enough step size so that you believe your results are accurate to at least four digits.
Use MatLab
Thankyou:)
4 commentaires
Steven Lord
le 2 Juin 2020
This sounds like a homework assignment. If it is, show us the code you've written to try to solve the problem and ask a specific question about where you're having difficulty and we may be able to provide some guidance.
If you aren't sure where to start because you're not familiar with how to write MATLAB code, I suggest you start with the MATLAB Onramp tutorial (https://www.mathworks.com/support/learn-with-matlab-tutorials.html) to quickly learn the essentials of MATLAB.
If you aren't sure where to start because you're not familiar with the mathematics you'll need to solve the problem, I recommend asking your professor and/or teaching assistant for help.
Rifan Sinaga
le 2 Juin 2020
Rifan Sinaga
le 2 Juin 2020
darova
le 14 Juin 2020
Your solution is correct. YOu can check it using ode45 built-in solver
[t,y] = ode45(f,[0 1],0);
plot(t,y)

Réponses (1)
Rifan Sinaga
le 2 Juin 2020
0 votes
Catégories
En savoir plus sur Programming dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!