Package fork.lib.math.applied.stat

Examples of fork.lib.math.applied.stat.Distribution.max()


* @param n
* @return
*/
public static ArrayList<Double> getThresholdLevels(Landscape2D data, double bthr, int n){
    Distribution dis= new Distribution(data.getValues());
    double range= dis.max()-bthr;
    if(range<=0){
        return null;
    }
    double v= bthr;
    double step= range/n;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.