Click or drag to resize
Accord.NET (logo)

IndependentComponentAnalysis Constructor (Double, AnalysisMethod, IndependentComponentAlgorithm)

Note: This API is now obsolete.

Constructs a new Independent Component Analysis.

Namespace:  Accord.Statistics.Analysis
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
[ObsoleteAttribute("Please do not pass data to this constructor, and use the Learn method instead.")]
public IndependentComponentAnalysis(
	double[,] data,
	AnalysisMethod method,
	IndependentComponentAlgorithm algorithm
)
Request Example View Source

Parameters

data
Type: SystemDouble
The source data to perform analysis. The matrix should contain variables as columns and observations of each variable as rows.
method
Type: Accord.Statistics.AnalysisAnalysisMethod
The analysis method to perform. Default is Center.
algorithm
Type: Accord.Statistics.AnalysisIndependentComponentAlgorithm
The FastICA algorithm to be used in the analysis. Default is Parallel.
See Also