1 16 package org.apache.commons.math.distribution; 17 18 import org.apache.commons.math.MathException; 19 20 25 public interface IntegerDistribution extends DiscreteDistribution { 26 34 double probability(int x); 35 36 47 double cumulativeProbability(int x) throws MathException; 48 49 58 double cumulativeProbability(int x0, int x1) throws MathException; 59 60 82 int inverseCumulativeProbability(double p) throws MathException; 83 } 84 | Popular Tags |