Skip to content

EmpiricalFunctionCoefficients

Namespace: ThinkGeo.Core

Represents the coefficients (range, sill, nugget) used by empirical variogram functions.

public class EmpiricalFunctionCoefficients

Inheritance objectEmpiricalFunctionCoefficients

Properties

Range

Gets or sets the distance(x-axis) where the empirical function first flattens.

public double Range { get; set; }

Property Value

double

Nugget

Gets or sets the value of crossing point with empirical function and semivariance(y-axis).

public double Nugget { get; set; }

Property Value

double

Sill

Gets or sets the value at which the semivariance(y-axis) attains the coefficients of Range.

public double Sill { get; set; }

Property Value

double

Constructors

EmpiricalFunctionCoefficients()

Initializes a new instance of the EmpiricalFunctionCoefficients class.

public EmpiricalFunctionCoefficients()

EmpiricalFunctionCoefficients(double, double, double)

Initializes a new instance of the EmpiricalFunctionCoefficients class.

public EmpiricalFunctionCoefficients(double range, double sill, double nugget)

Parameters

range double

sill double

nugget double