[][src]Module diffeq::ode::problem

Structs

Diagnostics

Contains some diagnostics of the integration.

InitialHint
OdeBuilder
OdeProblem

F: the RHS of the ODE dy/dt = F(t,y), which is a function of t and y(t) and returns dy/dt. y0: initial value for y. The type of y0, promoted as necessary according to the numeric type used for the times, determines the element type of the yout vector (yout::Vector{typeof(y0*one(t))}) tspan: Any iterable of sorted t values at which the solution (y) is requested. Most solvers will only consider tspan[0] and tspan[end], and intermediary points will be interpolated. If tspan[0] > tspan[end] the integration is performed backwards. The times are promoted as necessary to a common floating-point type.

StepHW92

Functions

diff

Finite difference operator on a vector