AIMA.Core.Util.Math.LUDecomposition.isNonsingular C# (CSharp) Method

isNonsingular() public method

public isNonsingular ( ) : bool
return bool
        public bool isNonsingular()
        {
            for (int j = 0; j < n; j++)
            {
                if (LU[j][j] == 0)
                    return false;
            }
            return true;
        }