View source on GitHub |
Returns the complex conjugate, element-wise.
tf.keras.ops.conjugate(
x
)
The complex conjugate of a complex number is obtained by changing the sign of its imaginary part.
keras.ops.conj
is a shorthand for this function.
Args | |
---|---|
x
|
Input tensor. |
Returns | |
---|---|
The complex conjugate of each element in x .
|