Getting Started
Working with ODL
Developer zone
Useful facts
API Reference
SetUnion.
__getitem__
Return self[indcs].
self[indcs]
Examples
>>> reals, complexnrs = odl.RealNumbers(), odl.ComplexNumbers() >>> union = odl.SetUnion(reals, complexnrs) >>> union[0] RealNumbers() >>> union[:] SetUnion(RealNumbers(), ComplexNumbers())