parameter.range {RandomFields}R Documentation

Range of model specific parameters

Description

parameter.range returns the range of the parameters specific to a parametrised variogram model or a covariance function

Usage

parameter.range(model, dim)

Arguments

model the variogram model or covariance function, see CovarianceFct
dim the dimension of the random field

Value

If the model is not valid or not specified for the given dimension, NaN is returned.
If the model does not have additional parameters, NULL is returned. Otherwise a list is returned.
If the parameter space is simple, a list of the following elements is returned

theoretical The theoretical ranges of the parameters. Note that open and closed intervals are not distinguished here.
practical The ranges of the parameters usually not exceeded in practical applications.

Both elements are matrices with two rows and the number of columns being the number of parameters.

If the parameter space is complex, the parameter space is devided into rectangular areas and theoretical and practical are lists where each element is a matrix as above.

Author(s)

Martin Schlather, martin.schlather@math.uni-goettingen.de http://www.stochastik.math.uni-goettingen.de/institute

See Also

CovarianceFct

Examples

  parameter.range("exponential", 1) # NULL
  str(parameter.range("power", 1))
  str(parameter.range("power", 2))
  str(parameter.range("gengneiting", 2))
  str(parameter.range("nsst",1))
  str(parameter.range("nsst2",1))
  str(parameter.range("hyper",1))

[Package RandomFields version 1.3.41 Index]