mirror of
https://github.com/gonum/gonum.git
synced 2025-10-05 15:16:59 +08:00
lapack/gonum: clean up Dgghrd and its test
This commit is contained in:

committed by
Vladimír Chalupecký

parent
f0a57a452a
commit
7df15c334b
@@ -231,7 +231,7 @@ const (
|
||||
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.
|
||||
OrthoNone OrthoComp = 'N' // Do not compute the orthogonal matrix.
|
||||
OrthoExplicit OrthoComp = 'I' // The orthogonal matrix is formed explicitly and returned in the argument.
|
||||
OrthoPostmul OrthoComp = 'V' // The orthogonal matrix is post-multiplied into the matrix stored in the argument on entry.
|
||||
)
|
||||
|
Reference in New Issue
Block a user