 | PCFactorExtraction(FuncDoubleVector, DoubleMatrix, Int32) Constructor |
Constructs a
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.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic PCFactorExtraction(
Func<DoubleVector, DoubleMatrix, int> numFactors
)
Public Sub New (
numFactors As Func(Of DoubleVector, DoubleMatrix, Integer)
)
public:
PCFactorExtraction(
Func<DoubleVector^, DoubleMatrix^, int>^ numFactors
)
new :
numFactors : Func<DoubleVector, DoubleMatrix, int> -> PCFactorExtraction
Parameters
- numFactors FuncDoubleVector, DoubleMatrix, Int32
- Functor for determining the number of factors
to extract.
RemarksThe class
CenterSpace.NMath.Core.NumberOfFactors
provides several functors commonly used to determine the number
of factors to extract.
See Also