PolynomialBase<T> Constructor

Definition

Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.0

Overload List

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

PolynomialBase<T>(Int32)

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

Parameters

parameterCount  Int32
The number of parameters.

PolynomialBase<T>(T[])

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

Parameters

parameters  T[]
An array of real numbers.

Remarks

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

See Also