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: NEWS.md
+4-3
Original file line number
Diff line number
Diff line change
@@ -103,9 +103,10 @@ Standard library changes
103
103
* The shape of an `UpperHessenberg` matrix is preserved under certain arithmetic operations, e.g. when multiplying or dividing by an `UpperTriangular` matrix. ([#40039])
104
104
*`cis(A)` now supports matrix arguments ([#40194]).
105
105
*`dot` now supports `UniformScaling` with `AbstractMatrix` ([#40250]).
106
-
*`qr[!]` and `lu[!]` now support `PivotingStrategy` values as their optional `pivot` argument:
107
-
defaults are `qr(A, NoPivot())` (vs. `qr(A, ColNorm())` for pivoting) and `lu(A, RowMax())`
108
-
(vs. `lu(A, NoPivot())` without pivoting); the former `Val{true/false}`-based calls are deprecated. ([#40623])
106
+
*`qr[!]` and `lu[!]` now support `LinearAlgebra.PivotingStrategy` (singleton type) values
107
+
as their optional `pivot` argument: defaults are `qr(A, NoPivot())` (vs.
108
+
`qr(A, ColumnNorm())` for pivoting) and `lu(A, RowMaximum())` (vs. `lu(A, NoPivot())`
109
+
without pivoting); the former `Val{true/false}`-based calls are deprecated. ([#40623])
0 commit comments