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

committed by
Vladimír Chalupecký

parent
929014505b
commit
1ec00850c6
@@ -155,11 +155,13 @@ const (
|
||||
ComputeRightEV RightEVJob = 'V' // Compute right eigenvectors.
|
||||
)
|
||||
|
||||
// Jobs for Dgebal.
|
||||
// BalanceJob specifies matrix balancing operation.
|
||||
type BalanceJob byte
|
||||
|
||||
const (
|
||||
Permute Job = 'P'
|
||||
Scale Job = 'S'
|
||||
PermuteScale Job = 'B'
|
||||
Permute BalanceJob = 'P'
|
||||
Scale BalanceJob = 'S'
|
||||
PermuteScale BalanceJob = 'B'
|
||||
)
|
||||
|
||||
// Job constants for Dhseqr.
|
||||
|
Reference in New Issue
Block a user