Package org.ejml.alg.dense.decomposition.lu

Examples of org.ejml.alg.dense.decomposition.lu.LUDecompositionNR


* @author Peter Abeles
*/
public class TestLUDecompositionNR extends GeneralLuDecompositionChecks {
    @Override
    public LUDecompositionBase create(int numRows, int numCols) {
        return new LUDecompositionNR();
    }
View Full Code Here


//        System.out.println("invert GJ              = "+ invertBenchmark(
//                new GaussJordan(mat.numRows),mat,numTrials));
        System.out.println("invert LU              = "+ invertBenchmark(
                new LinearSolverLu(new LUDecompositionAlt()),mat,numTrials));
        System.out.println("invert LU  NR          = "+ invertBenchmark(
                new LinearSolverLu(new LUDecompositionNR()),mat,numTrials));
        System.out.println("invert Ops             = "+
                invertOpsBenchmark(mat,numTrials));
//        System.out.println("unrolled               = "+
//                invertUnrolledBenchmark(mat,numTrials));
    }
View Full Code Here

TOP

Related Classes of org.ejml.alg.dense.decomposition.lu.LUDecompositionNR

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.