|
Spline Constructor
|
Creates a new instance of the
Spline class.
Namespace: GSF.NumericalAnalysisAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.218-beta+101eee949414e414795e55a6e73d88938f0177b8
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