Examples of HessenbergSimilarDecomposition


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
Copyright © 2018 www.massapi.com. 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.