ce
Followers: 0 Following: 0
Feeds
提问
Trying to make an Adams-Bashforth method with Richardson error estimate
%This program solves the initial value problem % y' = f(x,y), x0 <= x<= b, y(x0)=y0 %Initializing vaiables %f'(x,...
2 years 前 | 1 个回答 | 0
1
个回答提问
Trying to make euler's method program work
function [x,y] = euler_for(x0,y0,x_end,h,fcn) %Solve the ivp % y' = f(x,y), x0 <= x <= b, y(x0) = y0 %Use euler's method wi...
2 years 前 | 1 个回答 | 0