Second Order Runge-Kutta Method for Problem
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    

I am trying to generate a second order Runge Kutta method in matlab for the above problem and not sure where to start.  Tried asking for help but was shown Mathematica code and example and I dont have Mathematica.  Any help would be appreicated.
0 comentarios
Respuestas (1)
  Jeremy
    
 el 8 de Nov. de 2019
        The ode solvers built into MATLAB are based on the runge-kutta method. Are you meant to implement your own method, or can you use ode23?
2 comentarios
  Jeremy
    
 el 8 de Nov. de 2019
				
      Editada: Jeremy
    
 el 8 de Nov. de 2019
  
			I would encourage you to read the documentation. Here is some syntax, if I read your problem correctly this should be the solution to the first part of your problem using ode23:
dxdt = @(t,x) 0.02 - 0.01*sqrt(x);
x0 = 0;
tspan = [0 600];
sol = ode23(dxdt,tspan,x0);
plot(sol.x,sol.y)
Also, please look at this:
doc ode23
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

