

_D_i_s_t_a_n_c_e _M_a_t_r_i_x _C_o_m_p_u_t_a_t_i_o_n

     dist(x, method = "euclidian", diag = FALSE, upper=FALSE)

     print.dist(dist.obj, diag = NULL, upper = NULL)
     as.matrix.dist(dist.obj)

_A_r_g_u_m_e_n_t_s:

       x: a matrix or (data frame).  Distances between the
          rows of `x' will be computed.

  method: the distance measure to be used. This must be one
          of `"euclidian"', `"maximum"', `"manhattan"',
          `"canberra"' or `"binary"'.  Any unambiguous sub-
          string can be given.

    diag: a logical value indicating whether the diagonal of
          the distance matrix should be printed by
          `print.dist'.

   upper: a logical value indicating whether the upper tri-
          angle of the distance matrix should be be printed
          by `print.dist'.

_D_e_s_c_r_i_p_t_i_o_n:

     This function computes and returns the distance matrix
     computed by using the specified distance measure to
     compute the distances between the rows of `x'.

     Available distance measures are (written for two vec-
     tors x and y):

        * Euclidean: Usual square distance between the two
          vectors (2 norm).

        * Maximum: Maximum distance between two components
          of x and y (supremum norm)

        * Manhattan: Absolute distance between the two vec-
          tors (1 norm).

        * Canberra: sum(|x_i - y_i| / |x_i + y_i|)

        * Count the number of different bits in x and y
          where at least one of the two bits is 1, i.e.,
          components where both bits are zero are ignored.

_V_a_l_u_e:

     The lower triangle of the distance matrix stored by
     columns in a single vector.  The vector has the attri-
     butes `"Size"', `"Diag"', `"Upper"', `"Labels"' and
     `"class"' equal to `"dist"'.

_R_e_f_e_r_e_n_c_e_s:

     Mardia, K. V., J. T. Kent and J. M. Bibby (1979).  Mul-
     tivariate Analysis, London: Academic Press.

_S_e_e _A_l_s_o:

     `hclust'.

_E_x_a_m_p_l_e_s:

     x<-matrix(rnorm(100),nrow=5)
     dist(x)
     dist(x, diag = TRUE)
     dist(x, upper = TRUE)
     as.matrix(dist(x))

