mirror of
https://github.com/gonum/gonum.git
synced 2025-10-06 15:47:01 +08:00
lapack: cleanup doc comments
This commit is contained in:

committed by
Vladimír Chalupecký

parent
3a1f3daf9f
commit
696df21859
@@ -74,12 +74,12 @@ const (
|
|||||||
type MatrixType byte
|
type MatrixType byte
|
||||||
|
|
||||||
const (
|
const (
|
||||||
General MatrixType = 'G' // A dense matrix (like blas64.General).
|
General MatrixType = 'G' // A general dense matrix.
|
||||||
UpperTri MatrixType = 'U' // An upper triangular matrix.
|
UpperTri MatrixType = 'U' // An upper triangular matrix.
|
||||||
LowerTri MatrixType = 'L' // A lower triangular matrix.
|
LowerTri MatrixType = 'L' // A lower triangular matrix.
|
||||||
)
|
)
|
||||||
|
|
||||||
// Pivot specifies the pivot type for plane rotations
|
// Pivot specifies the pivot type for plane rotations.
|
||||||
type Pivot byte
|
type Pivot byte
|
||||||
|
|
||||||
const (
|
const (
|
||||||
@@ -118,11 +118,11 @@ const (
|
|||||||
type GSVDJob byte
|
type GSVDJob byte
|
||||||
|
|
||||||
const (
|
const (
|
||||||
GSVDU GSVDJob = 'U' // Compute orthogonal matrix U
|
GSVDU GSVDJob = 'U' // Compute orthogonal matrix U.
|
||||||
GSVDV GSVDJob = 'V' // Compute orthogonal matrix V
|
GSVDV GSVDJob = 'V' // Compute orthogonal matrix V.
|
||||||
GSVDQ GSVDJob = 'Q' // Compute orthogonal matrix Q
|
GSVDQ GSVDJob = 'Q' // Compute orthogonal matrix Q.
|
||||||
GSVDUnit GSVDJob = 'I' // Use unit-initialized matrix
|
GSVDUnit GSVDJob = 'I' // Use unit-initialized matrix.
|
||||||
GSVDNone GSVDJob = 'N' // Do not compute orthogonal matrix
|
GSVDNone GSVDJob = 'N' // Do not compute orthogonal matrix.
|
||||||
)
|
)
|
||||||
|
|
||||||
// EVComp specifies how eigenvectors are computed in Dsteqr.
|
// EVComp specifies how eigenvectors are computed in Dsteqr.
|
||||||
|
Reference in New Issue
Block a user