util
try_conjugate(x)
Return the complex conjugate.
\[
x^* \qquad \mathbb{K}\to\mathbb{K}
\]
Tries to call a method conjugate.
If not found, simply returns the element as is.
Python implementation.
Source code in vector\_pyutil.py
5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |