Package mikera.matrixx.decompose.impl.hessenberg

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


                {-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);
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.