OdeRungeKutta Constructor |
Constructs an ODE solver to solve the initial value
problem dy/dt = f(t,y).
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public OdeRungeKutta(
OdeRungeKuttaIFunction function
)
Public Sub New (
function As OdeRungeKuttaIFunction
)
public:
OdeRungeKutta(
OdeRungeKuttaIFunction^ function
)
new :
function : OdeRungeKuttaIFunction -> OdeRungeKutta
Parameters
- function
- Type: Imsl.MathOdeRungeKuttaIFunction
Implementation of interface IFunction
that defines the right-hand side function
f(t,y)
See Also