We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fd648a commit b30a950Copy full SHA for b30a950
test/interp.jl
@@ -13,7 +13,7 @@ k = kde((X,Y))
13
# Try to evaluate the KDE outside the interpolation domain
14
# The KDE is allowed to be zero, but it should not be greater than the exact solution
15
k = kde([0.0], bandwidth=1.0)
16
-@test pdf(k, k.x) ≈ k.density
+@test pdf.(k, k.x) ≈ k.density
17
@test pdf(k, -10.0) ≤ pdf(Normal(), -10.0)
18
@test pdf(k, +10.0) ≤ pdf(Normal(), +10.0)
19
0 commit comments