All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jnthnclt.os.lab.nn.NN Maven / Gradle / Ivy

package com.github.jnthnclt.os.lab.nn;

public class NN {

    /*
    Euclidian Distance without the final sqrt
     */
    static public double comparableEuclidianDistance(double[] a, double[] b) {
        double v = 0;
        for (int i = 0; i < a.length; i++) {
            double d = a[i] - b[i];
            v += (d * d);
        }
        return v;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy