We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e11e9d commit 00b1c77Copy full SHA for 00b1c77
base/linalg/dense.jl
@@ -583,6 +583,7 @@ sqrtm(a::Number) = (b = sqrt(complex(a)); imag(b) == 0 ? real(b) : b)
583
sqrtm(a::Complex) = sqrt(a)
584
585
function inv{T}(A::StridedMatrix{T})
586
+ checksquare(A)
587
S = typeof((one(T)*zero(T) + one(T)*zero(T))/one(T))
588
AA = convert(AbstractArray{S}, A)
589
if istriu(AA)
base/linalg/generic.jl
@@ -693,8 +693,6 @@ trace(x::Number) = x
693
694
#det(a::AbstractMatrix)
695
696
-inv(a::StridedMatrix) = throw(ArgumentError("argument must be a square matrix"))
697
-
698
"""
699
inv(M)
700
0 commit comments