| Interp(Double, MathUtilIDataToInterpolate, 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. |
| Interp(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. |
| Interp(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. |
| Interp(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. |
| Interp(DateTime, DateTime, Double, DateTime, Double) | Interpolates linearly between two points (t1, y1) and (t2, y2) and returns function value y at t. |
| Interp(Double, Double, Double, Double, Double) | Interpolates linearly between two points (x1, y1) and (x2, y2) and returns function value y at x. |