mirror of
https://github.com/gonum/gonum.git
synced 2025-10-21 06:09:26 +08:00
lapack: add types and constants for Dgeev
This commit is contained in:
12
lapack.go
12
lapack.go
@@ -156,3 +156,15 @@ const (
|
||||
AllEigVecMulQ HowMany = 'B' // Compute all right and/or left eigenvectors multiplied by an input matrix.
|
||||
SelectedEigVec HowMany = 'S' // Compute selected right and/or left eigenvectors.
|
||||
)
|
||||
|
||||
// Job types for Dgeev.
|
||||
type (
|
||||
JobLeftEV byte
|
||||
JobRightEV byte
|
||||
)
|
||||
|
||||
// Job constants for Dgeev.
|
||||
const (
|
||||
ComputeLeftEV JobLeftEV = 'V'
|
||||
ComputeRightEV JobRightEV = 'V'
|
||||
)
|
||||
|
Reference in New Issue
Block a user