| My own choice of input :
The number of grid points (must be in {1,..,10}:
m =
The grid points : (must be in increasing order!)
The initial guesses for the solution on this grid
for the cases 1,2, 3 your input must satisfy the boundary
conditions!
(the example is for n=2 and m=6):
The desired precision in solving the nonlinear system for the initial values si
Must be in [1.0e-16,0.01]:
tol =
The maximal stepsize of the integrator (should be smaller than the minimum griddistance/5)
Must be in [1.0e-16,1]:
hmax =
The maximal order the integrator should try (requires 2maxord/2 evaluations of F for each step)
Must be in {2,4,..,16}:
maxord =
The maximum number of Newton steps allowed, must be >= 2:
itmax =
The amount of output of the BVP solver (damped Newton solver) :
info=-1 none, info=0 intermediate values, info =1 very detailed
info =
|