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

com.github.chen0040.glm.maths.StdDev Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.github.chen0040.glm.maths;

/**
 * Created by xschen on 14/8/15.
 */
public class StdDev {
    public static double apply(double[] values, double mu){
        return Math.sqrt(Variance.apply(values, mu));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy