返回複數的複共軛。
用法
tf.math.conj(
x, name=None
)
參數
-
x
Tensor
共軛。必須具有數字或變體類型。 -
name
操作的名稱(可選)。
返回
-
Tensor
是x
的共軛(具有相同的類型)。
拋出
-
TypeError
如果x
不是數字張量。
給定一個複數張量 x
,此操作返回一個複數張量,這些複數是 x
中每個元素的複共軛。 x
中的複數必須采用 的形式,其中 a
是實部,b
是虛部。
此操作返回的複共軛形式為 。
例如:
x = tf.constant([-2.25 + 4.75j, 3.25 + 5.75j])
tf.math.conj(x)
<tf.Tensor: shape=(2,), dtype=complex128,
numpy=array([-2.25-4.75j, 3.25-5.75j])>
如果x
為實數,則原樣返回。
例如:
x = tf.constant([-2.25, 3.25])
tf.math.conj(x)
<tf.Tensor: shape=(2,), dtype=float32,
numpy=array([-2.25, 3.25], dtype=float32)>
numpy 兼容性
相當於 numpy.conj。
相關用法
- Python tf.math.confusion_matrix用法及代碼示例
- Python tf.math.count_nonzero用法及代碼示例
- Python tf.math.cos用法及代碼示例
- Python tf.math.cosh用法及代碼示例
- Python tf.math.cumulative_logsumexp用法及代碼示例
- Python tf.math.cumprod用法及代碼示例
- Python tf.math.ceil用法及代碼示例
- Python tf.math.cumsum用法及代碼示例
- Python tf.math.special.fresnel_cos用法及代碼示例
- Python tf.math.is_finite用法及代碼示例
- Python tf.math.special.bessel_k0e用法及代碼示例
- Python tf.math.acosh用法及代碼示例
- Python tf.math.invert_permutation用法及代碼示例
- Python tf.math.segment_prod用法及代碼示例
- Python tf.math.bincount用法及代碼示例
- Python tf.math.bessel_i0e用法及代碼示例
- Python tf.math.special.bessel_j0用法及代碼示例
- Python tf.math.unsorted_segment_min用法及代碼示例
- Python tf.math.scalar_mul用法及代碼示例
- Python tf.math.zero_fraction用法及代碼示例
- Python tf.math.reduce_max用法及代碼示例
- Python tf.math.special.fresnel_sin用法及代碼示例
- Python tf.math.segment_mean用法及代碼示例
- Python tf.math.xlog1py用法及代碼示例
- Python tf.math.less_equal用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.math.conj。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。