Skip to content

Commit

Permalink
lapack: cleanup doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-ch committed Oct 16, 2018
1 parent 1189d62 commit 6e7c751
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lapack/lapack.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ const (
type MatrixType byte

const (
General MatrixType = 'G' // A dense matrix (like blas64.General).
General MatrixType = 'G' // A general dense matrix.
UpperTri MatrixType = 'U' // An upper 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

const (
Expand Down Expand Up @@ -118,11 +118,11 @@ const (
type GSVDJob byte

const (
GSVDU GSVDJob = 'U' // Compute orthogonal matrix U
GSVDV GSVDJob = 'V' // Compute orthogonal matrix V
GSVDQ GSVDJob = 'Q' // Compute orthogonal matrix Q
GSVDUnit GSVDJob = 'I' // Use unit-initialized matrix
GSVDNone GSVDJob = 'N' // Do not compute orthogonal matrix
GSVDU GSVDJob = 'U' // Compute orthogonal matrix U.
GSVDV GSVDJob = 'V' // Compute orthogonal matrix V.
GSVDQ GSVDJob = 'Q' // Compute orthogonal matrix Q.
GSVDUnit GSVDJob = 'I' // Use unit-initialized matrix.
GSVDNone GSVDJob = 'N' // Do not compute orthogonal matrix.
)

// EVComp specifies how eigenvectors are computed in Dsteqr.
Expand Down

0 comments on commit 6e7c751

Please sign in to comment.