AIMA.Core.Util.Math.LUDecomposition.isNonsingular C# (CSharp) 메소드

isNonsingular() 공개 메소드

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