View source: R/10-grafos-TSP.R
compute_p_distance | R Documentation |
It computes the distance-p
between two-dimensional points.
compute_p_distance(x, y, p = 2)
x |
A two-dimensional point |
y |
A two-dimensional point |
p |
The |
The distance-p
is defined by
d_p(x,y) = \left(\sum_i
(x_i-y_i)^p\right)^{\frac{1}{p}}
.
The distance-p
between points x
and y
.
Cesar Asensio
compute_distance_matrix computes the distance matrix of a set of two-dimensional points, compute_tour_distance computes tour distances.
compute_p_distance(c(1,2),c(3,4)) # 2.8284
compute_p_distance(c(1,2),c(3,4),p=1) # 4
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.