com.github.chen0040.glm.utils.StdDev Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-glm Show documentation
Show all versions of java-glm Show documentation
Generalized linear models implemented in Java
package com.github.chen0040.glm.utils;
/**
* Created by memeanalytics on 14/8/15.
*/
public class StdDev {
public static double apply(double[] values, double mu){
return Math.sqrt(Variance.apply(values, mu));
}
}