mirror of
https://github.com/gonum/gonum.git
synced 2025-10-05 23:26:52 +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:
@@ -217,7 +217,7 @@ func TestSolve(t *testing.T) {
|
||||
x.Solve(a, b)
|
||||
|
||||
// Test that the normal equations hold.
|
||||
// A^T * A * x = A^T * b
|
||||
// Aᵀ * A * x = Aᵀ * b
|
||||
var tmp, lhs, rhs Dense
|
||||
tmp.Mul(a.T(), a)
|
||||
lhs.Mul(&tmp, &x)
|
||||
@@ -272,7 +272,7 @@ func TestSolveVec(t *testing.T) {
|
||||
x.SolveVec(a, b)
|
||||
|
||||
// Test that the normal equations hold.
|
||||
// A^T * A * x = A^T * b
|
||||
// Aᵀ * A * x = Aᵀ * b
|
||||
var tmp, lhs, rhs Dense
|
||||
tmp.Mul(a.T(), a)
|
||||
lhs.Mul(&tmp, &x)
|
||||
|
Reference in New Issue
Block a user