Skip to content

Commit

Permalink
Deprecate issym in favour of issymmetric, and correct a missed issym …
Browse files Browse the repository at this point in the history
…in linalg/dense.jl.
  • Loading branch information
pkofod committed Feb 23, 2016
1 parent 1c12208 commit 5b0f497
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions base/deprecated.jl
Original file line number Diff line number Diff line change
Expand Up @@ -990,3 +990,6 @@ end
export call

@deprecate_binding LambdaStaticData LambdaInfo

# Changed issym to issymmetric. #15192
@deprecate issym issymmetric
2 changes: 1 addition & 1 deletion base/linalg/dense.jl
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ end
logm(a::Complex) = log(a)

function sqrtm{T<:Real}(A::StridedMatrix{T})
if issym(A)
if issymmetric(A)
return full(sqrtm(Symmetric(A)))
end
n = checksquare(A)
Expand Down

0 comments on commit 5b0f497

Please sign in to comment.