Here you can find the source of squaredEuclideanDistance(double[] x, double[] y)
Parameter | Description |
---|---|
x | a parameter |
y | a parameter |
public static double squaredEuclideanDistance(double[] x, double[] y)
//package com.java2s; /* Copyright (C) 2014 C?ssio M. M. Pereira //from w w w.j a v a2s . co m This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ public class Main { /** * Compute the squared euclidean distance between two doubles arrays * @param x * @param y * @return the *squared* euclidean distance */ public static double squaredEuclideanDistance(double[] x, double[] y) { double dist = 0; double diff; for (int i = 0; i < x.length; i++) { diff = x[i] - y[i]; dist += diff * diff; } return dist; } }