Package mikera.matrixx.decompose.impl.hessenberg

Examples of mikera.matrixx.decompose.impl.hessenberg.TridiagonalDecompositionHouseholder


                {-0.098491, 2.776741, 0.623341, 0.624798, 0.401906},
                {-0.397037, 0.623341, 3.571302, -0.239631, -0.264573},
                {0.367426, 0.624798, -0.239631, 3.625034, -0.162896},
                {-0.208338, 0.401906, -0.264573, -0.162896, 3.835783}});

        TridiagonalDecompositionHouseholder tridiag = new TridiagonalDecompositionHouseholder();
        tridiag.decompose(A);

        double diag[] = new double[5];
        double off[] = new double[4];

        tridiag.getDiagonal(diag,off);

        SymmetricQrAlgorithm alg = new SymmetricQrAlgorithm();

        assertTrue(alg.process(5,diag,off));
View Full Code Here


        vector = new SymmetricQrAlgorithm(helper);
    }

    public SymmetricQRAlgorithmDecomposition( boolean computeVectors ) {

        this(new TridiagonalDecompositionHouseholder(), computeVectors);
    }
View Full Code Here

TOP

Related Classes of mikera.matrixx.decompose.impl.hessenberg.TridiagonalDecompositionHouseholder

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.