Getting Started
Working with ODL
Developer zone
Useful facts
API Reference
Return max_pt.
max_pt
For duck-typing with numpy.amax
numpy.amax
min odl.core.set.domain.IntervalProd.max
>>> g = RectGrid([1, 2, 5], [-2, 1.5, 2]) >>> g.max() array([ 5., 2.])
Also works with Numpy:
>>> np.max(g) array([ 5., 2.])