mirror of
https://github.com/gonum/gonum.git
synced 2025-10-22 06:39:26 +08:00
lapack,native: rename EigDecomp and EigBoth consts to OriginalEV and TridiagEV
As a side effect fix the documentation of Dsteqr which has the description reversed.
This commit is contained in:
12
lapack.go
12
lapack.go
@@ -112,12 +112,12 @@ const (
|
||||
type EVComp byte
|
||||
|
||||
const (
|
||||
// EigDecomp specifies to compute the eigenvalues and eigenvectors of the
|
||||
// full symmetric matrix.
|
||||
EigDecomp EVComp = 'V'
|
||||
// EigBoth specifies to compute both the eigenvalues and eigenvectors of the
|
||||
// input tridiagonal matrix.
|
||||
EigBoth EVComp = 'I'
|
||||
// OriginalEV specifies to compute the eigenvectors of the original
|
||||
// matrix.
|
||||
OriginalEV EVComp = 'V'
|
||||
// TridiagEV specifies to compute both the eigenvectors of the input
|
||||
// tridiagonal matrix.
|
||||
TridiagEV EVComp = 'I'
|
||||
)
|
||||
|
||||
// Job types for computation of eigenvectors.
|
||||
|
Reference in New Issue
Block a user