Given a function handle f an initial condition y0 and a final time tf, solve numerically the differential equation
dy/dt = f(y)
for the function y(t) between t=0 and t=tf. Give as a result res=y(tf).
Example:
f = @(x) -x; tf= 1; y0= 1;
=> y(tf) = 1/e = 0.367879441171442
Remarks: aim at a relative precision of around 1e-6. The function is analytic in the interval [0,1].
2110 Solvers
210 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
196 Solvers
103 Solvers
71 Solvers
Problem Tags