MathUtilInterpn(Double, Double, Double) Method

1-D linear interpolation (table lookup) Interpolates to find y, the value of the underlying function yTable at the point x. xTable must be a monoton increasing array of the same length as yTable.

Definition

Namespace: DHI.Mike1D.Generic
Assembly: DHI.Mike1D.Generic (in DHI.Mike1D.Generic.dll) Version: 24.0.0.0 (11.1.1.1111)
C#
public static double[] Interpn(
	double x,
	double[] xTable,
	double[,] yTable
)

Parameters

x  Double
value where to look up
xTable  Double
Monoton increasing vector of length n
yTable  Double
vector of length n

Return Value

Double
interpolated value (looked up value)

See Also