Feeds
답변 있음
Runge-Kutta 4th Order on a 2nd Order ODE
clc clear all n=10000; x=linspace(1,3,n+1); y0=[0;2/3]; h=(x(end)-x(1))/n; f=@(x,y,z) ([z;((5*z)/(3*x)-(5*y)/(3*x.^2))]) %...
Runge-Kutta 4th Order on a 2nd Order ODE
clc clear all n=10000; x=linspace(1,3,n+1); y0=[0;2/3]; h=(x(end)-x(1))/n; f=@(x,y,z) ([z;((5*z)/(3*x)-(5*y)/(3*x.^2))]) %...
대략 3년 전 | 0

