Uses of Interface
org.apache.mahout.math.matrix.doublealgo.Statistic.VectorVectorFunction

Packages that use Statistic.VectorVectorFunction
org.apache.mahout.math.matrix.doublealgo Double matrix algorithms such as print formatting, sorting, partitioning and statistics. 
 

Uses of Statistic.VectorVectorFunction in org.apache.mahout.math.matrix.doublealgo
 

Fields in org.apache.mahout.math.matrix.doublealgo declared as Statistic.VectorVectorFunction
static Statistic.VectorVectorFunction Statistic.BRAY_CURTIS
          Deprecated. Bray-Curtis distance function; Sum( abs(x[i]-y[i]) ) / Sum( x[i]+y[i] ).
static Statistic.VectorVectorFunction Statistic.CANBERRA
          Deprecated. Canberra distance function; Sum( abs(x[i]-y[i]) / abs(x[i]+y[i]) ).
static Statistic.VectorVectorFunction Statistic.EUCLID
          Deprecated. Euclidean distance function; Sqrt(Sum( (x[i]-y[i])^2 )).
static Statistic.VectorVectorFunction Statistic.MANHATTAN
          Deprecated. Manhattan distance function; Sum( abs(x[i]-y[i]) ).
static Statistic.VectorVectorFunction Statistic.MAXIMUM
          Deprecated. Maximum distance function; Max( abs(x[i]-y[i]) ).
 

Methods in org.apache.mahout.math.matrix.doublealgo with parameters of type Statistic.VectorVectorFunction
static DoubleMatrix2D Statistic.distance(DoubleMatrix2D matrix, Statistic.VectorVectorFunction distanceFunction)
          Deprecated. Constructs and returns the distance matrix of the given matrix.
 



Copyright © 2008-2010 The Apache Software Foundation. All Rights Reserved.