Skip to content

Commit 00b1c77

Browse files
andreasnoacktkelman
authored andcommitted
Consolidate dense inv methods to avoid overwriting (#20072)
1 parent 7e11e9d commit 00b1c77

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

base/linalg/dense.jl

+1
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,7 @@ sqrtm(a::Number) = (b = sqrt(complex(a)); imag(b) == 0 ? real(b) : b)
583583
sqrtm(a::Complex) = sqrt(a)
584584

585585
function inv{T}(A::StridedMatrix{T})
586+
checksquare(A)
586587
S = typeof((one(T)*zero(T) + one(T)*zero(T))/one(T))
587588
AA = convert(AbstractArray{S}, A)
588589
if istriu(AA)

base/linalg/generic.jl

-2
Original file line numberDiff line numberDiff line change
@@ -693,8 +693,6 @@ trace(x::Number) = x
693693

694694
#det(a::AbstractMatrix)
695695

696-
inv(a::StridedMatrix) = throw(ArgumentError("argument must be a square matrix"))
697-
698696
"""
699697
inv(M)
700698

0 commit comments

Comments
 (0)