You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unbounded variogram models like the power-law model can't be expressed by a covariance model, since they don't have a finite sill.
We need another class next to CovModel (maybe UnboundedModel), that provides only a variogram method. Only parameter in common with CovModel is then nugget (and maybe rescale).
Random field generation is currently depending on the spectral density of a model derived from its covariance function. Thus, we would need to implement new random field generators like turning bands or sequential gaussian for these models.
For Kriging, these models could be used immediately, but we need #191 for it to work.
The text was updated successfully, but these errors were encountered:
Unbounded variogram models like the power-law model can't be expressed by a covariance model, since they don't have a finite sill.
We need another class next to
CovModel
(maybeUnboundedModel
), that provides only avariogram
method. Only parameter in common withCovModel
is thennugget
(and mayberescale
).Possible models are:
UnboundedLinear
PowerLaw
(Webster 2007)Schlather
model: https://onlinelibrary.wiley.com/doi/full/10.1002/sta4.134Random field generation is currently depending on the spectral density of a model derived from its covariance function. Thus, we would need to implement new random field generators like turning bands or sequential gaussian for these models.
For Kriging, these models could be used immediately, but we need #191 for it to work.
The text was updated successfully, but these errors were encountered: