You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -49,11 +49,14 @@ Test whether the pairwise inner product of all column pairs is less than `tol`.
49
49
#### `orthogonal( a [, tol], [, onFalse] )`
50
50
Checks for squareness, column normality, and pair-wise column orthogonality to check if the matrix is orthogonal. `tol` is passed to the `columnsNormal` and `columnsOrthogonal`
51
51
52
+
#### `upperTriangular( a, [, tol] [, onFalse] )`
53
+
Check whether all entries below the diagonal are within `tol` of zero. Works on tall and wide two-dimensional ndarrays.
54
+
55
+
#### `lowerTriangular( a, [, tol] [, onFalse] )`
56
+
Check whether all entries above the diagonal are within `tol` of zero. Works on tall and wide two-dimensional ndarrays.
52
57
53
58
### TO DO:
54
59
55
-
-`upperTriangular( a, b, [, tol] [, onFalse] )`
56
-
-`lowerTriangular( a, b, [, tol] [, onFalse] )`
57
60
-`diagonal( a, [, tol] [, onFalse] )`
58
61
- separate column methods to allow testing of specific pair-wise columns (or maybe that's simple enough that it's unnecessary)
0 commit comments