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:
Dan Kortschak
2019-09-03 13:46:38 +09:30
parent 2065cbd6b4
commit 17ea55aedb
164 changed files with 949 additions and 949 deletions

View File

@@ -76,7 +76,7 @@ func DbdsqrTest(t *testing.T, impl Dbdsqrer) {
// First test the decomposition of the bidiagonal matrix. Set
// pt and u equal to I with the correct size. At the result
// of Dbdsqr, p and u will contain the data of P^T and Q, which
// of Dbdsqr, p and u will contain the data of P and Q, which
// will be used in the next step to test the multiplication
// with Q and VT.
@@ -133,7 +133,7 @@ func DbdsqrTest(t *testing.T, impl Dbdsqrer) {
t.Errorf("D is not sorted. %s", errStr)
}
// The above computed the real P and Q. Now input data for V^T,
// The above computed the real P and Q. Now input data for V,
// U, and C to check that the multiplications happen properly.
dAns := make([]float64, len(d))
copy(dAns, d)