PchipInterp1 Method

interpolates to find Vq, the values of the underlying function y=F(x) at the query points Xq.

Definition

Namespace: Gemstone.Numeric.Interpolation
Assembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.167 -- Release Build+9e631c9f4ed4cd2c2da47045792d813c2de0c4a8
public static double[] Interp1(
	double[] x,
	double[] y,
	double[] new_x
)

Parameters

x  Double
The x-values provided for the estimation of F(x).
y  Double
The y-values provided for the estimation of y = F(x)
new_x  Double
The x values to be estimated

Return Value

Double
the estimated y-values at location x =

See Also