LinearCombination<T>.Coefficient Property

Gets or sets the coefficient of the function with the specified index.

Definition

Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.0
C#
public virtual T this[
	int index
] { get; set; }

Parameters

index  Int32
 

Property Value

T
A real number.

Remarks

The index parameter represents the index of the function in the underlying FunctionBasis<T>. For classes deriving from PolynomialBase, this corresponds to the degree or order of the basis polynomial.

See Also