Java Distance Calculate distanceSquared(final double[] x, final double[] y)

Here you can find the source of distanceSquared(final double[] x, final double[] y)

Description

distance Squared

License

Open Source License

Declaration

public static double distanceSquared(final double[] x, final double[] y) 

Method Source Code

//package com.java2s;
/*/*from  w ww . java 2s  .co  m*/
* Copyright 2012-2016 Broad Institute, Inc.
* 
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
* 
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
* 
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

public class Main {
    public static double distanceSquared(final double[] x, final double[] y) {
        double dist = 0.0;
        for (int iii = 0; iii < x.length; iii++) {
            dist += (x[iii] - y[iii]) * (x[iii] - y[iii]);
        }
        return dist;
    }
}

Related

  1. distanceSqr(final float[] a, final float[] b)
  2. DistanceSquareBetweenPoints(double x1, double y1, double x2, double y2)
  3. distanceSquared(double dx, double dy)
  4. distanceSquared(double x1, double y1, double x2, double y2)
  5. distanceSquared(double x1, double y1, double x2, double y2)
  6. DistanceSquared(int x1, int z1, int x2, int z2)
  7. distanceSquared(int xa, int ya, int xb, int yb)
  8. distanceSquared(int[] referenceBlock, float[] center)
  9. distanceSquaredPointToLine(float px, float py, float x1, float y1, float x2, float y2)