mirror of
https://github.com/gonum/gonum.git
synced 2025-10-07 08:01:20 +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:
@@ -105,8 +105,8 @@ func TestQRSolveTo(t *testing.T) {
|
||||
qr.SolveTo(&x, trans, b)
|
||||
|
||||
// Test that the normal equations hold.
|
||||
// A^T * A * x = A^T * b if !trans
|
||||
// A * A^T * x = A * b if trans
|
||||
// Aᵀ * A * x = Aᵀ * b if !trans
|
||||
// A * Aᵀ * x = A * b if trans
|
||||
var lhs Dense
|
||||
var rhs Dense
|
||||
if trans {
|
||||
@@ -158,8 +158,8 @@ func TestQRSolveVecTo(t *testing.T) {
|
||||
qr.SolveVecTo(&x, trans, b)
|
||||
|
||||
// Test that the normal equations hold.
|
||||
// A^T * A * x = A^T * b if !trans
|
||||
// A * A^T * x = A * b if trans
|
||||
// Aᵀ * A * x = Aᵀ * b if !trans
|
||||
// A * Aᵀ * x = A * b if trans
|
||||
var lhs Dense
|
||||
var rhs Dense
|
||||
if trans {
|
||||
|
Reference in New Issue
Block a user