FastIca.UnmixingMatrix Property

Gets the unmixing matrix (W_full) whose rows are component weight vectors.

Definition

Namespace: Numerics.NET.Statistics.Multivariate
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
C#
public Matrix<double> UnmixingMatrix { get; }

Property Value

Matrix<Double>

Remarks

This property provides the same matrix as Components and is provided for API compatibility and clarity. The relationship S = (X - μ)·Wᵀ holds, where W is the unmixing matrix.

Exceptions

InvalidOperationException Thrown if accessed before calling Fit().

See Also