Uniform probability value on a continuous space.
Returns the value of a uniform probability defined on the bounds of the
given continuous space.
See also @CSpace/UniformDistribution.
0001 function p=UniformProbability(CS)
0002 % Uniform probability value on a continuous space.
0003 %
0004 % Returns the value of a uniform probability defined on the bounds of the
0005 % given continuous space.
0006 %
0007 % See also @CSpace/UniformDistribution.
0008
0009 p=prod(ones(1,CS.dim)./CS.range);
0010