OdeSolverSolve Method

Solves ODE System

Definition

Namespace: Metas.UncLib.Core.Special
Assembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 2.9.9435.16862
C#
public static double[,] Solve(
	double[] y,
	double[] x,
	double eps,
	OdeFunction ode_func
)

Parameters

y  Double
Initial conditions Y (length: n) at X[0]
x  Double
X (length: m), should be ordered by ascending or by descending
eps  Double
Tolerance
ode_func  OdeFunction
Y' = f(Y, x)

Return Value

Double
Y table (size: m x n)

See Also