Runge Kutta Method With Matlab
Mostrar comentarios más antiguos
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 comentarios
Steven Lord
el 2 de Jun. de 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
el 2 de Jun. de 2020
Rifan Sinaga
el 2 de Jun. de 2020
darova
el 14 de Jun. de 2020
Your solution is correct. YOu can check it using ode45 built-in solver
[t,y] = ode45(f,[0 1],0);
plot(t,y)

Respuestas (1)
Rifan Sinaga
el 2 de Jun. de 2020
0 votos
Categorías
Más información sobre Programming en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!