public static PrincipalComponents Analyze(
DoubleMatrix data,
DoubleMatrix individualWeights,
DoubleMatrix variableCoefficients
)
Public Shared Function Analyze (
data As DoubleMatrix,
individualWeights As DoubleMatrix,
variableCoefficients As DoubleMatrix
) As PrincipalComponents
public:
static PrincipalComponents^ Analyze(
DoubleMatrix^ data,
DoubleMatrix^ individualWeights,
DoubleMatrix^ variableCoefficients
)
static member Analyze :
data : DoubleMatrix *
individualWeights : DoubleMatrix *
variableCoefficients : DoubleMatrix -> PrincipalComponents
ArgumentNullException | data is null. -or- individualWeights is null. -or- variableCoefficients is null. |
ArgumentOutOfRangeException | individualWeights is not a column vector. -or- variableCoefficients is not a row vector. -or- The Count of individualWeights is not equal to the number of rows of data. -or- The Count of variableCoefficients is not equal to the number of columns of data. -or- individualWeights entries do not sum up to 1. -or- Any entry of individualWeights is negative. -or- Any entry of variableCoefficients is not positive. |
InvalidOperationException |
The Singular Value Decomposition needed to acquire
the principal components cannot be executed or does not converge. -or- No principal component has positive variance. The principal information cannot be acquired. |