IndicatorNonnegativity
- class odl.functionals.default_functionals.IndicatorNonnegativity(*args, **kwargs)[source]
Bases:
IndicatorBoxIndicator on the set of non-negative numbers.
Notes
The nonnegativity indicator
is defined as:
- __init__(space)[source]
Initialize an instance.
Parameters
- space
LinearSpace Domain of the functional.
Examples
>>> space = odl.rn(3) >>> func = IndicatorNonnegativity(space) >>> func([0, 1, 2]) # all points positive 0 >>> func([0, 1, -3]) # one point negative inf
- space