Add Dsteqr and test

This commit is contained in:
btracey
2016-02-24 23:02:32 -07:00
parent 0abd9b5730
commit c21ccf39fe
6 changed files with 579 additions and 0 deletions

View File

@@ -109,3 +109,17 @@ const (
SVDOverwrite = 'O' // Compute the singular vectors and store them in input matrix
SVDNone = 'N' // Do not compute singular vectors
)
// EigComp specifies the type of eigenvalue decomposition.
type EigComp byte
const (
// EigValueOnly specifies to compute only the eigenvalues of the input matrix.
EigValueOnly EigComp = 'N'
// EigDecomp specifies to compute the eigenvalues and eigenvectors of the
// full symmetric matrix.
EigDecomp = 'V'
// EigBoth specifies to compute both the eigenvalues and eigenvectors of the
// input tridiagonal matrix.
EigBoth = 'I'
)