Package mikera.matrixx.decompose.impl.lu

Examples of mikera.matrixx.decompose.impl.lu.AltLU


            return;

//        A.reshape(N-off,N, false);
        A = A.reshape(N-off, N);
       
        AltLU lu = new AltLU();
        lu._decompose(A);
        assertFalse(lu.isSingular());
//        assertTrue(MatrixFeatures.isRowsLinearIndependent(A));
    }
View Full Code Here


        if(!A.isSquare())
            throw new IllegalArgumentException("Input must be a square matrix.");
        this.A = A;
        this.numRows = A.rowCount();
        this.numCols = A.columnCount();
        decomp = new AltLU();
        result = decomp._decompose(A);
        return result;
    }
View Full Code Here

TOP

Related Classes of mikera.matrixx.decompose.impl.lu.AltLU

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.