|
Spline Constructor
|
Creates a new instance of the
Spline class.
Namespace: GSF.NumericalAnalysisAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax Public Sub New (
xValue As Double,
coefficients As Double()
)
public:
Spline(
double xValue,
array<double>^ coefficients
)
new :
xValue : float *
coefficients : float[] -> Spline
GSF.NumericalAnalysis.Spline = function(xValue, coefficients);
View SourceParameters
- 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