Interface BinomialDistribution

    • Method Detail

      • 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.