conj#
- class saiunit.math.conj(x, **kwargs)#
Return the complex conjugate of the argument.
- Parameters:
x (
Union[saiunit.Quantity,Array,ndarray,number,bool]) – Input array.- Returns:
out – Quantity if x is a Quantity, else an array.
- Return type:
Union[saiunit.Quantity,Array]
Examples
>>> import saiunit as u >>> a = [1 + 2j, 3 + 4j] * u.second >>> u.math.conj(a)