Interface BinomialDistribution

All Superinterfaces:
DiscreteDistribution, Distribution, IntegerDistribution
All Known Implementing Classes:
BinomialDistributionImpl

public interface BinomialDistribution extends IntegerDistribution
The Binomial Distribution.

References:

  • Method Details

    • getNumberOfTrials

      int getNumberOfTrials()
      Access the number of trials for this distribution.
      Returns:
      the number of trials.
    • getProbabilityOfSuccess

      double getProbabilityOfSuccess()
      Access the probability of success for this distribution.
      Returns:
      the probability of success.
    • setNumberOfTrials

      @Deprecated void setNumberOfTrials(int trials)
      Deprecated.
      as of v2.1
      Change the number of trials for this distribution.
      Parameters:
      trials - the new number of trials.
    • setProbabilityOfSuccess

      @Deprecated void setProbabilityOfSuccess(double p)
      Deprecated.
      as of v2.1
      Change the probability of success for this distribution.
      Parameters:
      p - the new probability of success.