Parallel Colt 0.7.2

Uses of Interface
cern.colt.matrix.tdouble.algo.DoubleStatistic.VectorVectorFunction

Packages that use DoubleStatistic.VectorVectorFunction
cern.colt.matrix.tdouble.algo Linear Algebraic matrix computations operating on DoubleMatrix2D and DoubleMatrix1D
 

Uses of DoubleStatistic.VectorVectorFunction in cern.colt.matrix.tdouble.algo
 

Fields in cern.colt.matrix.tdouble.algo declared as DoubleStatistic.VectorVectorFunction
static DoubleStatistic.VectorVectorFunction DoubleStatistic.BRAY_CURTIS
          Bray-Curtis distance function; Sum( abs(x[i]-y[i]) ) / Sum( x[i]+y[i] ).
static DoubleStatistic.VectorVectorFunction DoubleStatistic.CANBERRA
          Canberra distance function; Sum( abs(x[i]-y[i]) / abs(x[i]+y[i]) ).
static DoubleStatistic.VectorVectorFunction DoubleStatistic.EUCLID
          Euclidean distance function; Sqrt(Sum( (x[i]-y[i])^2 )).
static DoubleStatistic.VectorVectorFunction DoubleStatistic.MANHATTAN
          Manhattan distance function; Sum( abs(x[i]-y[i]) ).
static DoubleStatistic.VectorVectorFunction DoubleStatistic.MAXIMUM
          Maximum distance function; Max( abs(x[i]-y[i]) ).
 

Methods in cern.colt.matrix.tdouble.algo with parameters of type DoubleStatistic.VectorVectorFunction
static void DoubleStatistic.demo3(DoubleStatistic.VectorVectorFunction norm)
          Demonstrates usage of this class.
static DoubleMatrix2D DoubleStatistic.distance(DoubleMatrix2D matrix, DoubleStatistic.VectorVectorFunction distanceFunction)
          Constructs and returns the distance matrix of the given matrix.
 


Parallel Colt 0.7.2

Jump to the Parallel Colt Homepage