| Interface | Description |
|---|---|
| TridiagonalSimilarDecomposition<MatrixType extends Matrix64F> |
Finds the decomposition of a matrix in the form of:
A = O*T*OT where A is a symmetric m by m matrix, O is an orthogonal matrix, and T is a tridiagonal matrix. |
| Class | Description |
|---|---|
| HessenbergSimilarDecomposition |
Finds the decomposition of a matrix in the form of:
A = OHOT where A is an m by m matrix, O is an orthogonal matrix, and H is an upper Hessenberg matrix. |
| TridiagonalDecompositionBlock |
Wrapper around a block implementation of TridiagonalSimilarDecomposition
|
| TridiagonalDecompositionHouseholder |
Performs a
similar tridiagonal decomposition on a square symmetric input matrix. |
| TridiagonalDecompositionHouseholderOrig |
A straight forward implementation from "Fundamentals of Matrix Computations," Second Edition.
This is only saved to provide a point of reference in benchmarks. |
Copyright © 2013. All Rights Reserved.