mirror of
https://github.com/gonum/gonum.git
synced 2025-10-05 15:16:59 +08:00
lapack: rename ComputeEV and add EVNone
This commit is contained in:

committed by
Vladimír Chalupecký

parent
0d92706921
commit
de667f08e7
@@ -137,16 +137,22 @@ const (
|
||||
UpdateSchur EVComp = 'V'
|
||||
)
|
||||
|
||||
// EVJob specifies whether eigenvectors are computed in Dsyev.
|
||||
type EVJob byte
|
||||
|
||||
const (
|
||||
EVCompute EVJob = 'V' // Eigenvectors are computed.
|
||||
EVNone EVJob = 'N' // Eigenvectors are not computed.
|
||||
)
|
||||
|
||||
// Job types for computation of eigenvectors.
|
||||
type (
|
||||
EVJob byte
|
||||
LeftEVJob byte
|
||||
RightEVJob byte
|
||||
)
|
||||
|
||||
// Job constants for computation of eigenvectors.
|
||||
const (
|
||||
ComputeEV EVJob = 'V' // Compute eigenvectors in Dsyev.
|
||||
ComputeLeftEV LeftEVJob = 'V' // Compute left eigenvectors.
|
||||
ComputeRightEV RightEVJob = 'V' // Compute right eigenvectors.
|
||||
)
|
||||
|
Reference in New Issue
Block a user