UncOdeSolverSolveT(Double, T, Double, OdeFunction) Method

Solves ODE System

Definition

Namespace: Metas.UncLib.LinProp
Assembly: Metas.UncLib.LinProp (in Metas.UncLib.LinProp.dll) Version: 2.9.9435.16865
C#
public static T[][] Solve<T>(
	double[] y,
	T[] x,
	double eps,
	OdeFunction ode_func
)
where T : new(), Object, IRealNumber<T>

Parameters

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

Type Parameters

T
Real Number Type

Return Value

T
Y table (size: m x n)

See Also