Uses of Interface
cern.colt.matrix.doublealgo.Statistic.VectorVectorFunction
-
Packages that use Statistic.VectorVectorFunction Package Description cern.colt.matrix.doublealgo Double matrix algorithms such as print formatting, sorting, partitioning and statistics. -
-
Uses of Statistic.VectorVectorFunction in cern.colt.matrix.doublealgo
Fields in cern.colt.matrix.doublealgo declared as Statistic.VectorVectorFunction Modifier and Type Field Description static Statistic.VectorVectorFunctionStatistic. BRAY_CURTISBray-Curtis distance function; Sum( abs(x[i]-y[i]) ) / Sum( x[i]+y[i] ).static Statistic.VectorVectorFunctionStatistic. CANBERRACanberra distance function; Sum( abs(x[i]-y[i]) / abs(x[i]+y[i]) ).static Statistic.VectorVectorFunctionStatistic. EUCLIDEuclidean distance function; Sqrt(Sum( (x[i]-y[i])^2 )).static Statistic.VectorVectorFunctionStatistic. MANHATTANManhattan distance function; Sum( abs(x[i]-y[i]) ).static Statistic.VectorVectorFunctionStatistic. MAXIMUMMaximum distance function; Max( abs(x[i]-y[i]) ).Methods in cern.colt.matrix.doublealgo with parameters of type Statistic.VectorVectorFunction Modifier and Type Method Description static voidStatistic. demo3(Statistic.VectorVectorFunction norm)Demonstrates usage of this class.static DoubleMatrix2DStatistic. distance(DoubleMatrix2D matrix, Statistic.VectorVectorFunction distanceFunction)Constructs and returns the distance matrix of the given matrix.
-