mirror of
https://github.com/gonum/gonum.git
synced 2025-10-05 15:16:59 +08:00
lapack/gonum: clean up Dlatdf (#1739)
This commit is contained in:

committed by
GitHub

parent
030e69b6a7
commit
897ca24e8b
@@ -215,3 +215,12 @@ const (
|
||||
EVAllMulQ EVHowMany = 'B' // Compute all right and/or left eigenvectors multiplied by an input matrix.
|
||||
EVSelected EVHowMany = 'S' // Compute selected right and/or left eigenvectors.
|
||||
)
|
||||
|
||||
// MaximizeNormX specifies the heuristic method for computing a contribution to
|
||||
// the reciprocal Dif-estimate in Dlatdf.
|
||||
type MaximizeNormXJob byte
|
||||
|
||||
const (
|
||||
LocalLookAhead MaximizeNormXJob = 0 // Solve Z*x=h-f where h is a vector of ±1.
|
||||
NormalizedNullVector MaximizeNormXJob = 2 // Compute an approximate null-vector e of Z, normalize e and solve Z*x=±e-f.
|
||||
)
|
||||
|
Reference in New Issue
Block a user