Methods 


CubicSpline Class Members

The following tables list the members exposed by CubicSpline.

Public Constructors
 NameDescription
Public ConstructorOverloaded.   
Top
Public Methods
 NameDescription
Public Methodstatic (Shared in Visual Basic) Static all-in-one method to fit the splines and evaluate at X coordinates.  
Public Method Evaluate the spline at the specified x coordinates. This can extrapolate off the ends of the splines. You must provide X's in ascending order. The spline must already be computed before calling this, meaning you must have already called Fit() or FitAndEval().  
Public Method Evaluate (compute) the slope of the spline at the specified x coordinates. This can extrapolate off the ends of the splines. You must provide X's in ascending order. The spline must already be computed before calling this, meaning you must have already called Fit() or FitAndEval().  
Public Method Compute spline coefficients for the specified x,y points. This does the "natural spline" style for ends. This can extrapolate off the ends of the splines. You must provide points in X sort order.  
Public Method Fit x,y and then eval at points xs and return the corresponding y's. This does the "natural spline" style for ends. This can extrapolate off the ends of the splines. You must provide points in X sort order.  
Public Methodstatic (Shared in Visual Basic) Fit the input x,y points using a 'geometric' strategy so that y does not have to be a single-valued function of x.  
Top
Extension Methods
 NameDescription
Public Extension Method Notifies that finalizer has been invoked
Public Extension MethodOverloaded. Converts an System.IComparable array to double array
Public Extension MethodYields a single item, converting it to System.Collections.IEnumerable.
Public Extension Method
Top
See Also