Accord.Math.Environments.OctaveEnvironment.chol C# (CSharp) Method

chol() protected static method

Cholesky decomposition.
protected static chol ( double a ) : ].double[
a double
return ].double[
        protected static double[,] chol(double[,] a)
        {
            var chol = new CholeskyDecomposition(a);
            return chol.LeftTriangularFactor;
        }
        #endregion