Getting Started
Working with ODL
Developer zone
Useful facts
API Reference
Return an identical (deep) copy of this tensor.
None
NumpyTensor
The deep copy
>>> space = odl.rn(3) >>> x = space.element([1, 2, 3]) >>> y = x.copy() >>> y == x True >>> y is x False