RegressionModel<T>.CovarianceMatrix Property

Gets the covariance matrix of the model parameters.

Definition

Namespace: Numerics.NET.DataAnalysis.Models
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.2.0
C#
public SymmetricMatrix<T>? CovarianceMatrix { get; }

Property Value

SymmetricMatrix<T>

Remarks

This property is available when the model is fitted or deployed. It throws an InvalidOperationException if the model is empty.

Exceptions

InvalidOperationException Thrown if the model is empty.

See Also