OdeSolverSolve Method
            Solves ODE System
            
Namespace: Metas.UncLib.Core.SpecialAssembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 2.9.9435.16862
public static double[,] Solve(
	double[] y,
	double[] x,
	double eps,
	OdeFunction ode_func
)
Public Shared Function Solve ( 
	y As Double(),
	x As Double(),
	eps As Double,
	ode_func As OdeFunction
) As Double(,)
public:
static array<double,2>^ Solve(
	array<double>^ y, 
	array<double>^ x, 
	double eps, 
	OdeFunction^ ode_func
)
static member Solve : 
        y : float[] * 
        x : float[] * 
        eps : float * 
        ode_func : OdeFunction -> float[,] 
- 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)
 
DoubleY table (size: m x n)