Skip to content

Commit fdbc9ea

Browse files
qualify norm
1 parent 8519f38 commit fdbc9ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/math/linearalgebra/support.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ end
88
return r === c
99
end
1010

11-
function norm(v::Array{DoubleFloat{T},N}, p::Real=2.0) where {N, T<:IEEEFloat}
11+
function LinearAlgebra.norm(v::Array{DoubleFloat{T},N}, p::Real=2.0) where {N, T<:IEEEFloat}
1212
isempty(v) && return zero(DoubleFloat{T})
1313

1414
if isinf(p)
@@ -22,7 +22,7 @@ function norm(v::Array{DoubleFloat{T},N}, p::Real=2.0) where {N, T<:IEEEFloat}
2222
end
2323
end
2424

25-
function norm(v::Array{Complex{DoubleFloat{T}},N}, p::Real=2.0) where {N, T<:IEEEFloat}
25+
function LinearAlgebra.norm(v::Array{Complex{DoubleFloat{T}},N}, p::Real=2.0) where {N, T<:IEEEFloat}
2626
isempty(v) && return zero(DoubleFloat{T})
2727

2828
if isinf(p)

0 commit comments

Comments
 (0)