Package org.ejml.alg.dense.decomposition.hessenberg

Examples of org.ejml.alg.dense.decomposition.hessenberg.HessenbergSimilarDecomposition


    // should it compute eigenvectors or just eigenvalues
    boolean computeVectors;

    public WatchedDoubleStepQRDecomposition( boolean computeVectors ) {
        hessenberg = new HessenbergSimilarDecomposition(10);
        algValue = new WatchedDoubleStepQREigenvalue();
        algVector = new WatchedDoubleStepQREigenvector();

        this.computeVectors = computeVectors;
    }
View Full Code Here

TOP

Related Classes of org.ejml.alg.dense.decomposition.hessenberg.HessenbergSimilarDecomposition

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.