Skip to content
Snippets Groups Projects
Commit 348d3ac4 authored by Jonas Krimmer's avatar Jonas Krimmer
Browse files

fix: change scv computation

parent 0b7dd696
No related branches found
No related tags found
No related merge requests found
......@@ -229,7 +229,7 @@ end
"""
function scv(u::AbstractArray{T,N}; dims=:) where {T,N}
I = abs2.(u)
var(I; dims, corrected=false) ./ mean(I; dims) .^ 2
mean(abs2, I; dims) ./ mean(I; dims) .^ 2 .- 1 # it might be advantageous to not use `var` to avoid computing the mean twice
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment