mirror of
https://github.com/gonum/gonum.git
synced 2025-10-05 15:16:59 +08:00
blas,lapack: clean up docs and comments
Apply (with manual curation after the fact): * s/^T/U+1d40/g * s/^H/U+1d34/g * s/, {2,3}if / $1/g Some additional manual editing of odd formatting.
This commit is contained in:
@@ -93,15 +93,15 @@ const (
|
||||
type ApplyOrtho byte
|
||||
|
||||
const (
|
||||
ApplyP ApplyOrtho = 'P' // Apply P or P^T.
|
||||
ApplyQ ApplyOrtho = 'Q' // Apply Q or Q^T.
|
||||
ApplyP ApplyOrtho = 'P' // Apply P or Pᵀ.
|
||||
ApplyQ ApplyOrtho = 'Q' // Apply Q or Qᵀ.
|
||||
)
|
||||
|
||||
// GenOrtho specifies which orthogonal matrix is generated in Dorgbr.
|
||||
type GenOrtho byte
|
||||
|
||||
const (
|
||||
GeneratePT GenOrtho = 'P' // Generate P^T.
|
||||
GeneratePT GenOrtho = 'P' // Generate Pᵀ.
|
||||
GenerateQ GenOrtho = 'Q' // Generate Q.
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user