Learn R Programming

dprep (version 3.0.2)

distancia1: Vector-Vector Manhattan Distance Function

Description

Finds the Manhattan distance between two vectors x and y, or the vector x and the matrix y

Usage

distancia1(x, y)

Arguments

x
A numeric vector
y
A numeric vector or matrix

Value

distancia
The result is a numeric value representing the Manhattan distance between x and y, or a row matrix representing the Euclidean distance between x and each row of y.

Details

Does not support missing values.

Examples

Run this code
#---- Calculating distances
x=rnorm(4)
y=matrix(rnorm(12),4,3)
distancia1(x,y[,1])
distancia1(x,y)

Run the code above in your browser using DataLab