DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Euclidean Distance Between Two Vectors (arrays) In Ruby
// Calculates the Euclidean distance between two vectors (arrays) in Ruby
def euclidean_distance(vector1, vector2)
sum = 0
vector1.zip(vector2).each do |v1, v2|
component = (v1 - v2)**2
sum += component
end
Math.sqrt(sum)
end





