Getting Started
Working with ODL
Developer zone
Useful facts
API Reference
SetIntersection
SetIntersection.__init__()
Bases: Set
Set
The intersection of several subsets.
The elements of this set are elements of all the subsets.
This is a lazy intersection, i.e. there is no intelligence and the set is literally stored as the intersection of its subsets.
Initialize a new instance.
The sets whose intersection should be taken. Any duplicates are ignored.
>>> reals, complexnrs = odl.RealNumbers(), odl.ComplexNumbers() >>> union = odl.SetIntersection(reals, complexnrs)