|   | ProcrustesAnalysisCompute Method (Int32, Double) | 
        
         
              Compute the Procrustes analysis to extract Procrustes distances and models by specifying the reference dataset
            
 
    Namespace: 
   Accord.Statistics.Analysis
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
 Syntax
Syntaxpublic double[,] Compute(
	int reference_sample_index,
	params double[,][] samples
)
Public Function Compute ( 
	reference_sample_index As Integer,
	ParamArray samples As Double(,)()
) As Double(,)
Parameters
- reference_sample_index
- Type: SystemInt32
 Index of the reference dataset. If out of bounds of the sample array, the first dataset is used.
- samples
- Type: SystemDouble
 List of sample data sets to analyze
Return Value
Type: 
DoubleProcrustes distances of the analyzed samples
 See Also
See Also