|
IndependentComponentAnalysis Constructor (Double)
|
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
)
<ObsoleteAttribute("Please do not pass data to this constructor, and use the Learn method instead.")>
Public Sub New (
data As Double(,)
)
Request Example
View SourceParameters
- data
- Type: SystemDouble
The source data to perform analysis. The matrix should contain
variables as columns and observations of each variable as rows.
See Also