public static PrincipalComponents Analyze(
DoubleMatrix data,
DoubleMatrix individualWeights
)
Public Shared Function Analyze (
data As DoubleMatrix,
individualWeights As DoubleMatrix
) As PrincipalComponents
public:
static PrincipalComponents^ Analyze(
DoubleMatrix^ data,
DoubleMatrix^ individualWeights
)
static member Analyze :
data : DoubleMatrix *
individualWeights : DoubleMatrix -> PrincipalComponents
ArgumentNullException | data is null. -or- individualWeights is null. |
ArgumentOutOfRangeException | individualWeights is not a column vector. -or- The Count of individualWeights is not equal to the number of rows of data. -or- individualWeights entries do not sum up to 1. -or- Any entry of individualWeights is negative. |
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. |