| 
            
              PrincipalComponentAnalysisReduce Method 
             | 
          
        
         
              Reduces the dimensionality of a given matrix x 
              to the given number of dimensions.
            
 
    Namespace: 
   Accord.Statistics.Analysis
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntaxpublic static double[][] Reduce(
	double[][] x,
	int dimensions
)
Public Shared Function Reduce ( 
	x As Double()(),
	dimensions As Integer
) As Double()()
 Request Example
		View SourceParameters
- x
 - Type: SystemDouble
The matrix that should have its dimensionality reduced. - dimensions
 - Type: SystemInt32
The number of dimensions for the reduced matrix. 
Return Value
Type: 
Double
See Also