Click or drag to resize

MathUtil.Interp Method

Overload List
  NameDescription
Public methodStatic memberInterp(Double, MathUtil.IDataToInterpolate, ExtrapolationTypes)
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. For x values outside xTable extrapolation is applied. Extrapolation method is specified.
Public methodStatic memberInterp(Double,Double[],Double[])
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.
Public methodStatic memberInterp(DateTime,DateTime[],Double[], ExtrapolationTypes)
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. For x values outside xTable extrapolation is applied. Extrapolation method is specified.
Public methodStatic memberInterp(Double,Double[],Double[], ExtrapolationTypes)
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. For x values outside xTable extrapolation is applied. Extrapolation method is specified.
Top
See Also