From 696df21859a57939ad47e3592f4d86eaa66d23f9 Mon Sep 17 00:00:00 2001 From: Vladimir Chalupecky Date: Sun, 14 Oct 2018 07:38:51 +0200 Subject: [PATCH] lapack: cleanup doc comments --- lapack/lapack.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lapack/lapack.go b/lapack/lapack.go index 031e3193..aa994606 100644 --- a/lapack/lapack.go +++ b/lapack/lapack.go @@ -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 ( @@ -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.