Skip to content

Commit

Permalink
Update interp.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
jaksle committed Feb 7, 2024
1 parent 9fd648a commit b30a950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/interp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ k = kde((X,Y))
# Try to evaluate the KDE outside the interpolation domain
# The KDE is allowed to be zero, but it should not be greater than the exact solution
k = kde([0.0], bandwidth=1.0)
@test pdf(k, k.x) k.density
@test pdf.(k, k.x) k.density
@test pdf(k, -10.0) pdf(Normal(), -10.0)
@test pdf(k, +10.0) pdf(Normal(), +10.0)

Expand Down

0 comments on commit b30a950

Please sign in to comment.