Package org.ejml.alg.dense.decomposition.chol

Examples of org.ejml.alg.dense.decomposition.chol.CholeskyDecompositionLDL


     *
     * @param matrixSize Number of rows and columns that the returned decomposition is optimized for.
     * @return CholeskyDecompositionLDL
     */
    public static CholeskyDecompositionLDL cholLDL( int matrixSize ) {
        return new CholeskyDecompositionLDL();
    }
View Full Code Here


    public LinearSolverCholLDL( CholeskyDecompositionLDL decomp ) {
        this.decomp = decomp;
    }

    public LinearSolverCholLDL() {
        this.decomp = new CholeskyDecompositionLDL();
    }
View Full Code Here

    {
        System.out.println("Solve Cholesky         = "+solve(
                new LinearSolverChol(new CholeskyDecompositionInner(true)),
                A,b,numTrials));
        System.out.println("Solve Cholesky LDL     = "+solve(
                new LinearSolverCholLDL(new CholeskyDecompositionLDL()),
                A,b,numTrials));
    }
View Full Code Here

TOP

Related Classes of org.ejml.alg.dense.decomposition.chol.CholeskyDecompositionLDL

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.