Click or drag to resize

PCFactorExtraction(FuncDoubleVector, DoubleMatrix, Int32) Constructor

Constructs a
C#
PCFactorExtraction
object using the given functor to determine the number of factors to extract. This function takes two argument: the first is the vector of eigenvalues of the covariance matrix, the second is a matrix whose columns contain the corresponding eigenvectors of the covariance matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public PCFactorExtraction(
	Func<DoubleVector, DoubleMatrix, int> numFactors
)

Parameters

numFactors  FuncDoubleVector, DoubleMatrix, Int32
Functor for determining the number of factors to extract.
Remarks
The class
C#
CenterSpace.NMath.Core.NumberOfFactors
provides several functors commonly used to determine the number of factors to extract.
See Also