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

committed by
Vladimír Chalupecký

parent
a6f3f37374
commit
d3817b5e18
@@ -170,10 +170,12 @@ const (
|
||||
PermuteScale BalanceJob = 'B'
|
||||
)
|
||||
|
||||
// Job constants for Dhseqr.
|
||||
// SchurJob specifies whether the Schur form is computed in Dhseqr.
|
||||
type SchurJob byte
|
||||
|
||||
const (
|
||||
EigenvaluesOnly EVJob = 'E'
|
||||
EigenvaluesAndSchur EVJob = 'S'
|
||||
EigenvaluesOnly SchurJob = 'E'
|
||||
EigenvaluesAndSchur SchurJob = 'S'
|
||||
)
|
||||
|
||||
// EVSide specifies what eigenvectors will be computed.
|
||||
|
Reference in New Issue
Block a user