Clip01¶
- Clip01(prob, tail=False)¶
 Clip a value on [0, 1].
This function can be useful when we want to ensure that a given number can be considered as a probability, even if there are e.g. rounding errors.
- Parameters:
 - pfloat
 Value to clip
- tailbool, default=False
 If False, then return min(1, max(0,p)). Otherwise return 1 - min(1, max(0,p)).
- Returns:
 - clipfloat
 Clipped value.
Examples
>>> import openturns as ot >>> p = ot.SpecFunc.Clip01(1.01)
      OpenTURNS