Skip to content

Commit

Permalink
Add test for spherical variogram model with range > 1
Browse files Browse the repository at this point in the history
  • Loading branch information
juliohm committed Jul 5, 2017
1 parent 7acf5ab commit 19775ff
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/variograms.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
@testset "Variograms" begin
h = linspace(0,100)
h = linspace(0,10)
x, y = rand(3), rand(3)

γs = [GaussianVariogram(), SphericalVariogram(),
ExponentialVariogram(), MaternVariogram()]
ExponentialVariogram(), MaternVariogram(),
SphericalVariogram(range=2.)]

for γ in [γs..., CompositeVariogram(γs...)]
# variograms are increasing
Expand Down

0 comments on commit 19775ff

Please sign in to comment.