Input x coordinates.
Input y coordinates, do not need to be a single-valued function of x.
How many output points to create.
Output (interpolated) x values.
Output (interpolated) y values.
FitGeometric Method
Fit the input x,y points using a 'geometric' strategy so that y does not have to be a single-valued function of x.
Syntax
public static void FitGeometric( 
   double[] x,
   double[] y,
   int nOutputPoints,
   out double[] xs,
   out double[] ys
)

Parameters

x
Input x coordinates.
y
Input y coordinates, do not need to be a single-valued function of x.
nOutputPoints
How many output points to create.
xs
Output (interpolated) x values.
ys
Output (interpolated) y values.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also