Package org.jquantlib.math.matrixutilities

Examples of org.jquantlib.math.matrixutilities.SymmetricSchurDecomposition


        final Matrix testMatrices[] = { M1, M2 };


        for (final Matrix M : testMatrices) {

        final SymmetricSchurDecomposition schur = M.schur();
        final Array eigenValues = schur.eigenvalues();
        final Matrix eigenVectors = schur.eigenvectors();
        final double minHolder = Constants.QL_MAX_REAL;

        final int N = M.cols();
        final int offset = M.offset();
View Full Code Here

TOP

Related Classes of org.jquantlib.math.matrixutilities.SymmetricSchurDecomposition

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.