Package mikera.matrixx.decompose.impl.eigen

Examples of mikera.matrixx.decompose.impl.eigen.SymmetricQRAlgorithmDecomposition.decompose()


     * @param computeVectors Should it compute the eigenvectors or just eigenvalues.
     * @return an IEigenResult object that represents the solution to the decomposition.
     */
    public static IEigenResult decomposeSymmetric(AMatrix A, boolean computeVectors) {
        SymmetricQRAlgorithmDecomposition alg = new SymmetricQRAlgorithmDecomposition(computeVectors);
        return alg.decompose(A);
    }
    /**
     * <p>
     * Computes the eigenvalues and eigenvectors of a real symmetric matrix. Returns an object that represents
     * the solution of the decomposition.
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.