Fast Ica Constructor
Definition
Namespace: Numerics.NET.Statistics.Multivariate
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Overload List
Fast | Initializes a new instance of the IndependentComponentAnalysis class. |
Fast | Initializes a new instance of the IndependentComponentAnalysis class. |
Fast | Initializes a new instance of the IndependentComponentAnalysis class. |
Fast | Initializes a new instance of the IndependentComponentAnalysis class. |
Fast | Initializes a new instance of the IndependentComponentAnalysis class. |
Fast | Initializes a new instance of the IndependentComponentAnalysis class. |
FastIca(IDataFrame)
Initializes a new instance of the IndependentComponentAnalysis class.
public FastIca(
IDataFrame dataFrame
)
Parameters
- dataFrame IDataFrame
- A IDataFrame containing the data for the analysis.
FastIca(Matrix<Double>)
Initializes a new instance of the IndependentComponentAnalysis class.
public FastIca(
Matrix<double> features
)
Parameters
FastIca(Vector<Double>[])
Initializes a new instance of the IndependentComponentAnalysis class.
public FastIca(
Vector<double>[] variables
)
Parameters
FastIca(IDataFrame, String)
Initializes a new instance of the IndependentComponentAnalysis class.
public FastIca(
IDataFrame dataFrame,
string formula
)
Parameters
- dataFrame IDataFrame
- A IDataFrame containing the data for the analysis.
- formula String
- A formula that specifies the features in the model.
FastIca(IDataFrame, String[])
Initializes a new instance of the IndependentComponentAnalysis class.
public FastIca(
IDataFrame dataFrame,
string[]? featureNames
)
Parameters
- dataFrame IDataFrame
- A IDataFrame containing the data for the analysis.
- featureNames String[]
- An array containing the names of the features.
FastIca(IEnumerable<Vector<Double>>, Vector<Double>)
Initializes a new instance of the IndependentComponentAnalysis class.
public FastIca(
IEnumerable<Vector<double>> features,
Vector<double>? weights = null
)
Parameters
- features IEnumerable<Vector<Double>>
- A sequence of vectors that contain the features.
- weights Vector<Double> (Optional)
- A vector containing the weight for each observation.