ode45, ode23, ode113, ode15s, ode23s, ode23t, ode23tb ...
https://math.jhu.edu › techdoc › refoptions = odeset('RelTol',1e-4,'AbsTol',[1e-4 1e-4 1e-5]); [t,y] = ode45('rigid',[0 12],[0 1 1],options);. Plotting the columns of the returned array Y versus T ...
ode45, ode23, ode113, ode15s, ode23s, ode23t, ode23tb ...
http://faculty.petra.ac.id › ref › ode...options = odeset('RelTol',1e-4,'AbsTol',[1e-4 1e-4 1e-5]); [t,y] = ode45('rigid',[0 12],[0 1 1],options);. Plotting the columns of the returned array Y versus T ...
matlab examples ODE23 45 - Auburn University
www.eng.auburn.edu › ~tplacek › coursesMATLAB Examples on the use of ode23 and ode45: Example 1: Use ode23 and ode45 to solve the initial value problem for a first order differential equation: , (0) 1, [0,5] 2 ' 2 = ∈ − − = y t y ty y First create a MatLab function and name it fun1.m . function f=fun1(t,y) f=-t*y/sqrt(2-y^2); Now use MatLab functions ode23 and ode45 to solve ...