public static double MinimumCentroidLinkage(
DoubleMatrix data,
IndexPartition<double> partition
)
Public Shared Function MinimumCentroidLinkage (
data As DoubleMatrix,
partition As IndexPartition(Of Double)
) As Double
public:
static double MinimumCentroidLinkage(
DoubleMatrix^ data,
IndexPartition<double>^ partition
)
static member MinimumCentroidLinkage :
data : DoubleMatrix *
partition : IndexPartition<float> -> float
Each column of data is associated to one of the variables under study, while its rows are associated to the individuals. The partition is intended to define parts which contains row indexes valid for data.
This method applies Euclidean distances.
ArgumentNullException | data. -or- partition is null. |
ArgumentException | A part in partition contains a position which is not valid as a row index of data. |