Uniform probability value on a discrete space.
Returns the probability value assigned to each point in the discrete
space by a uniform probability distribution.
See also @DSpace/UniformDistribution.
0001 function p=UniformProbability(DS)
0002 % Uniform probability value on a discrete space.
0003 %
0004 % Returns the probability value assigned to each point in the discrete
0005 % space by a uniform probability distribution.
0006 %
0007 % See also @DSpace/UniformDistribution.
0008
0009 p=1/DS.max;
0010