|   | Spline Constructor | 
        
        
            Creates a new instance of the 
Spline class.
            
 GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic Spline(
	double xValue,
	double[] coefficients
)
Public Sub New ( 
	xValue As Double,
	coefficients As Double()
)
public:
Spline(
	double xValue, 
	array<double>^ coefficients
)
new : 
        xValue : float * 
        coefficients : float[] -> SplineGSF.NumericalAnalysis.Spline = function(xValue, coefficients);
Parameters
- xValue  Double
- The starting value for the dependent variable at which the spline was computed.
- coefficients  Double
- The coefficients of each term in the polynomial.
 See Also
See Also