Example usage for org.apache.commons.math3.distribution AbstractIntegerDistribution subclass-usage

List of usage examples for org.apache.commons.math3.distribution AbstractIntegerDistribution subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.math3.distribution AbstractIntegerDistribution subclass-usage.

Usage

From source file org.apache.druid.benchmark.datagen.RealRoundingDistribution.java

/**
 * Rounds the output values from the sample() function of an AbstractRealDistribution.
 */
public class RealRoundingDistribution extends AbstractIntegerDistribution {
    private AbstractRealDistribution realDist;

From source file io.druid.benchmark.datagen.RealRoundingDistribution.java

public class RealRoundingDistribution extends AbstractIntegerDistribution {
    private AbstractRealDistribution realDist;

    public RealRoundingDistribution(AbstractRealDistribution realDist) {
        this.realDist = realDist;
    }

From source file experiment.PascalDistribution_bug.java

/**
 * <p>
 * Implementation of the Pascal distribution. The Pascal distribution is a
 * special case of the Negative Binomial distribution where the number of
 * successes parameter is an integer.
 * </p>

From source file edu.oregonstate.eecs.mcplan.util.GibbsDistribution.java

/**
 * @author jhostetler
 *
 */
public class GibbsDistribution extends AbstractIntegerDistribution {
    public final double beta;