|   | PartialLeastSquaresAnalysis Constructor (Double, Double, PartialLeastSquaresAlgorithm) | 
        
         Note: This API is now obsolete.
              Constructs a new Partial Least Squares Analysis.
            
 
    Namespace: 
   Accord.Statistics.Analysis
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
 Syntax
Syntax[ObsoleteAttribute("Please pass the 'inputs' and 'outputs' matrices to the Learn method instead.")]
public PartialLeastSquaresAnalysis(
	double[,] inputs,
	double[,] outputs,
	PartialLeastSquaresAlgorithm algorithm
)<ObsoleteAttribute("Please pass the 'inputs' and 'outputs' matrices to the Learn method instead.")>
Public Sub New ( 
	inputs As Double(,),
	outputs As Double(,),
	algorithm As PartialLeastSquaresAlgorithm
)Parameters
- inputs
- Type: SystemDouble
 The input source data to perform analysis.
- outputs
- Type: SystemDouble
 The output source data to perform analysis.
- algorithm
- Type: Accord.Statistics.AnalysisPartialLeastSquaresAlgorithm
 The PLS algorithm to use in the analysis. Default is NIPALS.
 See Also
See Also