Constructs an ODE solver to solve the initial value problem dy/dt = f(t,y).

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public OdeRungeKutta(
	OdeRungeKutta..::.IFunction function
)
Visual Basic (Declaration)
Public Sub New ( _
	function As OdeRungeKutta..::.IFunction _
)
Visual C++
public:
OdeRungeKutta(
	OdeRungeKutta..::.IFunction^ function
)

Parameters

function
Type: Imsl.Math..::.OdeRungeKutta..::.IFunction
Implementation of interface IFunction that defines the right-hand side function f(t,y)

See Also