Package org.seamcat.model.distributions
Interface DiscreteUniformDistribution
-
- All Superinterfaces:
Distribution
public interface DiscreteUniformDistribution extends Distribution
The discrete uniform is the discrete alternative of the Uniform distribution. The Discrete uniform distribution is defined by the following parameters:- Lower bound Xmin of the distribution
- Upper bound Xmax of the distribution
- Step S (e.g. channel spacing in the case of frequency distributions)
- Step shift Ss (e.g. to set the step values to the centre frequency of the channel)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getMax()
double
getMin()
double
getStep()
double
getStepShift()
-
Methods inherited from interface org.seamcat.model.distributions.Distribution
accept, getBounds, trial
-
-