ProductSpaceElement.T

property ProductSpaceElement.T

This element’s transpose, i.e. the functional <. , self>.

Returns
transposeInnerProductOperator

Notes

This function is only defined in inner product spaces.

In a complex space, the conjugate transpose of is taken instead of the transpose only.

Examples

>>> rn = odl.rn(3)
>>> x = rn.element([1, 2, 3])
>>> y = rn.element([2, 1, 3])
>>> x.T(y)
13.0