Skip to content

Commit

Permalink
Add docs for CompositeVariogram
Browse files Browse the repository at this point in the history
  • Loading branch information
juliohm committed Jun 27, 2017
1 parent 362f7f9 commit 78cecf4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/src/variograms.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,17 @@ GaussianVariogram(nugget=.1) # add nugget effect
MaternVariogram(order=1) # set order of Bessel function
```

Additionally, a composite (additive) variogram model ``\gamma(h) = \gamma_1(h) + \gamma_2(h) + \cdots \gamma_n(h)``
can be constructed from a vector of variogram models:

```julia
CompositeVariogram([GaussianVariogram(), ExponentialVariogram()])
```

Like the other variogram models, a composite variogram ``\gamma`` can be evaluated as an isotropic model
``\gamma(h)`` or as a model with a custom distance defined by taking into account its components
``\gamma(\x_1,\x_2)``.

## Gaussian

```math
Expand Down Expand Up @@ -78,3 +89,9 @@ ExponentialVariogram
```@docs
MaternVariogram
```

## Composite

```@docs
CompositeVariogram
```

0 comments on commit 78cecf4

Please sign in to comment.