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

@@ -31,7 +31,7 @@ func ExampleHOGSVD() {
}
v := gsvd.VTo(nil)
fmt.Printf("\nCommon basis vectors\n\n\tV^T = %.4f",
fmt.Printf("\nCommon basis vectors\n\n\tV = %.4f",
mat.Formatted(v.T(), mat.Prefix("\t ")))
// Output:
@@ -128,7 +128,7 @@ func ExampleHOGSVD() {
//
// Common basis vectors
//
// V^T = ⎡-0.0897 -0.4460 -0.8905⎤
// V = ⎡-0.0897 -0.4460 -0.8905⎤
// ⎢-0.4911 -0.5432 -0.6810⎥
// ⎣ 0.0644 0.2841 0.9566⎦
}