parameter.range {RandomFields} | R Documentation |
parameter.range
returns the range of the parameters specific to
a parametrised variogram model or a covariance function
parameter.range(model, dim)
model |
the variogram model or covariance function, see CovarianceFct |
dim |
the dimension of the random field |
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.
Martin Schlather, martin.schlather@math.uni-goettingen.de http://www.stochastik.math.uni-goettingen.de/institute
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))