floor_divide

odl.ufunc_ops.ufunc_ops.floor_divide(domain=RealNumbers())

Return the largest integer smaller or equal to the division of the inputs.

Notes

This creates a Operator/Functional that applies a ufunc pointwise.

Examples

Create operator that acts pointwise on a TensorSpace

>>> space = odl.rn(3)
>>> op = odl.ufunc_ops.floor_divide(space)