powered by
It computes the distance-\(p\) between two-dimensional points.
compute_p_distance(x, y, p = 2)
The distance-\(p\) between points \(x\) and \(y\).
A two-dimensional point
The \(p\)-parameter of the distance-\(p\)
Cesar Asensio
The distance-\(p\) is defined by $$d_p(x,y) = \left(\sum_i (x_i-y_i)^p\right)^{\frac{1}{p}}$$.
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
Run the code above in your browser using DataLab