Feeds
질문
hi, i need your help, y''=xy, y(0)=0 and y(0)=1 this second order DE i can solve in power series method i got recurrence relation
I can already solve center moving series, but how I can solve 50 and 100 order power series with plot. This is my code: ...
11년 초과 전 | 답변 수: 2 | 0
2
답변질문
y''=xy, y(0)=0, y'(0)=1, (Airy equation) step size h=0.05 and interval is [-10,2], this is system of ode, i can already solve runge kutta method but also i need airy solution i can try but not make correct graph please help me...
y''=xy, y(0)=0, y'(0)=1, (Airy equation) step size h=0.05 and interval is [-10,2], this is system of ode, I can already solve ru...
거의 12년 전 | 답변 수: 0 | 0
0
답변질문
i can try The system of ODE's y''=xy, y(0)=0, y'(0)=1 solve in runge kutta method, h=0.05 and interval is [-10 2]
function [x, u]= RK4_sys12(f, tspan, u0, n) a=tspan(1); b=tspan(2); h=(b-a)/n; x=(a:h:b)'; u(1,:)=u0; for i...
거의 12년 전 | 답변 수: 0 | 0