FastIca.NumberOfComponents Property

Gets or sets the number of independent components to extract.

Definition

Namespace: Numerics.NET.Statistics.Multivariate
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
C#
public int NumberOfComponents { get; set; }

Property Value

Int32

Remarks

This value must be between 1 and the smaller of the number of features and the number of samples. Setting a smaller number of components can improve computational performance and focus the analysis on the most significant independent sources.

If this number is set to -1 (the default), the largest value is used, in the common case the number of features.

Exceptions

ArgumentOutOfRangeException Thrown when the value is less than 1.

See Also