Parameter<T>.Variable Property

Gets the independent Variable this Parameter<T> corresponds to.

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public IVector? Variable { get; }

Property Value

IVector
The independent Variable this Parameter<T> corresponds to.

Remarks

Some parameters do not correspond to an independent variable. The intercept in a LinearRegressionModel is an example. In such a case, this property returns null.

See Also