mirror of
https://github.com/gonum/gonum.git
synced 2025-10-05 23:26:52 +08:00
lapack/gonum: add Dgghrd and its test
This commit is contained in:

committed by
GitHub

parent
7bed099d44
commit
f0a57a452a
@@ -226,3 +226,12 @@ 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.
|
||||
)
|
||||
|
||||
// OrthoComp specifies whether and how the orthogonal matrix is computed in Dgghrd.
|
||||
type OrthoComp byte
|
||||
|
||||
const (
|
||||
OrthoNone OrthoComp = 'N' // Do not compute orthogonal matrix.
|
||||
OrthoUnit OrthoComp = 'I' // Argument is initialized to the unit matrix and the orthogonal matrix is returned.
|
||||
OrthoEntry OrthoComp = 'V' // Argument Q contains orthogonal matrix Q1 on entry and the product Q1*Q is returned.
|
||||
)
|
||||
|
Reference in New Issue
Block a user