mirror of
https://github.com/gonum/gonum.git
synced 2025-10-20 21:59:25 +08:00
Add Dsteqr and test
This commit is contained in:
14
lapack.go
14
lapack.go
@@ -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'
|
||||
)
|
||||
|
Reference in New Issue
Block a user