Interpolation[Kriging]
GenerateSpatialData
generate a spatially correlated data set
Calling Sequence
Parameters
Description
Examples
Compatibility
GenerateSpatialData(variogram)
GenerateSpatialData(variogram,n,options)
variogram
-
a supported variogram model
n
(optional) the (approximate) number of points generated. The default value is 30.
options
(optional) keyword option of the form grid=truefalse or dimension=d. If grid is set to true, the generated data points will be equally spaced along each dimension (default: false). The dimension option sets the dimension of the points to be generated (default: 2).
The GenerateSpatialData command takes a variogram and generates a set of points and associated data reflective of that variogram model. These points and data can then be used to experiment with, or demonstrate, Kriging interpolation.
If the grid=true option is given, then the points are located in a square -dimensional grid, at coordinates equally spaced between 0 and 1. As a consequence, there will be points in total, for some . Maple chooses as ; consequently, the number of points generated may be smaller than . For example, if has its default value of 2, then the number of points will be reduced to the largest perfect square that is not greater than n.
If the grid=true option is not given, then the points are uniformly randomly selected from the -dimensional unit cube. In this case, exactly points are generated.
The data set is returned as an expression sequence of a list of lists representing the points, and a Vector of values at those points.
We generate some points in two dimensions and associated data.
These can be used to demonstrate Kriging interpolation.
We now generate some points in a three-dimensional grid and associated data.
The Interpolation[Kriging][GenerateSpatialData] command was introduced in Maple 2018.
For more information on Maple 2018 changes, see Updates in Maple 2018.
See Also
ComputeGrid
Kriging
SetVariogram
Download Help Document