PolynomialBase Constructor

Definition

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

PolynomialBase(Double[]) Constructs a new curve with a specified set of parameters.
PolynomialBase(Int32) Constructs a new curve with the specified number of parameters.

PolynomialBase(Double[])

Constructs a new curve with a specified set of parameters.
C#
protected PolynomialBase(
	double[] parameters
)

Parameters

parameters  Double[]
An array of real numbers.

Remarks

The meaning of the parameters is determined by the inheriting class.

PolynomialBase(Int32)

Constructs a new curve with the specified number of parameters.
C#
protected PolynomialBase(
	int parameterCount
)

Parameters

parameterCount  Int32
The number of parameters.

See Also