GridInterpolatorInterpolate Method |
Interpolate in the source array at relative/fractional index
(jRel,kRel), using the undefinedValue
as an undefined value/delete value that is not taken into account when interpolating.
Namespace: DHI.ProjectionsAssembly: DHI.Projections (in DHI.Projections.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public float Interpolate(
float[] source,
double jRel,
double kRel,
float undefinedValue
)
Public Function Interpolate (
source As Single(),
jRel As Double,
kRel As Double,
undefinedValue As Single
) As Single
public:
float Interpolate(
array<float>^ source,
double jRel,
double kRel,
float undefinedValue
)
member Interpolate :
source : float32[] *
jRel : float *
kRel : float *
undefinedValue : float32 -> float32
Parameters
- source
- Type: SystemSingle
Source array, size must match source array definition. - jRel
- Type: SystemDouble
Relative/fractional index in x direction - kRel
- Type: SystemDouble
Relative/fractional index in y direction - undefinedValue
- Type: SystemSingle
Undefined value
Return Value
Type:
SingleInterpolated value
See Also