Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
francescoalemanno committed Mar 17, 2022
1 parent 7926ec7 commit b0e1db0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/KissSmoothing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function denoise(
end
iV = dct(V)
stri = map(i -> ifelse(i == dims, lV, 1), 1:ndims(V))
X = reshape(abs2.(((1:lV) .- 1) ./ (lV - 1)), stri...)
X = map(abs2,reshape(LinRange(0.0,1.0,lV), stri...))
d = factor * mean(abs, diff(V, dims = dims)) * (K1 / K2)
σt = 0.5
σd = 0.25
Expand Down

0 comments on commit b0e1db0

Please sign in to comment.