geogebra.kernel.statistics.AlgoInverseZipf.java Source code

Java tutorial

Introduction

Here is the source code for geogebra.kernel.statistics.AlgoInverseZipf.java

Source

/* 
GeoGebra - Dynamic Mathematics for Everyone
http://www.geogebra.org
    
This file is part of GeoGebra.
    
This program is free software; you can redistribute it and/or modify it 
under the terms of the GNU General Public License as published by 
the Free Software Foundation.
    
*/

package geogebra.kernel.statistics;

import geogebra.kernel.Construction;
import geogebra.kernel.arithmetic.NumberValue;

import org.apache.commons.math.distribution.ZipfDistribution;

/**
 * 
 * @author Michael Borcherds
 */

public class AlgoInverseZipf extends AlgoDistribution {

    private static final long serialVersionUID = 1L;

    public AlgoInverseZipf(Construction cons, String label, NumberValue a, NumberValue b, NumberValue c) {
        super(cons, label, a, b, c, null);
    }

    public String getClassName() {
        return "AlgoInverseZipf";
    }

    protected final void compute() {

        if (input[0].isDefined() && input[1].isDefined() && input[2].isDefined()) {
            int param = (int) a.getDouble();
            double param2 = b.getDouble();
            double val = c.getDouble();
            try {
                ZipfDistribution dist = getZipfDistribution(param, param2);
                num.setValue(dist.inverseCumulativeProbability(val) + 1);

            } catch (Exception e) {
                num.setUndefined();
            }
        } else
            num.setUndefined();
    }

}