Package mikera.matrixx.decompose.impl.eigen

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


     * @param A The input matrix. It must be a square symmetric matrix.
     * @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);
    }
View Full Code Here

TOP

Related Classes of mikera.matrixx.decompose.impl.eigen.SymmetricQRAlgorithmDecomposition

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.