|  | LinkageUnweightedAverageLinkage Method | 
            Computes the distance between two clusters as the average distance between
            all pairs of objects in the two different clusters. 
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static double UnweightedAverageLinkage(
	double Drp,
	double Drq,
	double Dpq,
	double Nr,
	double Np,
	double Nq
)
Public Shared Function UnweightedAverageLinkage ( 
	Drp As Double,
	Drq As Double,
	Dpq As Double,
	Nr As Double,
	Np As Double,
	Nq As Double
) As Double
public:
static double UnweightedAverageLinkage(
	double Drp, 
	double Drq, 
	double Dpq, 
	double Nr, 
	double Np, 
	double Nq
)
static member UnweightedAverageLinkage : 
        Drp : float * 
        Drq : float * 
        Dpq : float * 
        Nr : float * 
        Np : float * 
        Nq : float -> float Parameters
- Drp  Double
- The distance between R and P.
- Drq  Double
- The distance between R and Q.
- Dpq  Double
- The distance between P and Q.
- Nr  Double
- The number of objects in R.
- Np  Double
- The number of objects in P.
- Nq  Double
- The number of objects in Q.
Return Value
DoubleThe distance between R and P + Q.
 Remarks
Remarks
            During cluster analysis when two groups P and Q are united, a linkage function
            computes the distance between the new group P + Q and another group R.
            
            This method is sometimes referred to as "unweighted pair-group method using
            arithmetic averages," and abbreviated UPGMA. 
            
 See Also
See Also