當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python tf.dtypes.complex用法及代碼示例


將兩個實數轉換為複數。

用法

tf.dtypes.complex(
    real, imag, name=None
)

參數

  • real 一個Tensor。必須是以下類型之一:float32float64
  • imag 一個Tensor。必須與 real 具有相同的類型。
  • name 操作的名稱(可選)。

返回

  • Tensor 類型為 complex64complex128

拋出

  • TypeError Real 和 imag 必須是正確的類型

給定一個張量real表示複數的實部和張量imag表示複數的虛部,此操作返回形式為元素的複數\(a + bj\) ,其中a代表real部分和b代表imag部分。

輸入張量 realimag 必須具有相同的形狀。

例如:

real = tf.constant([2.25, 3.25])
imag = tf.constant([4.75, 5.75])
tf.complex(real, imag)  # [[2.25 + 4.75j], [3.25 + 5.75j]]

相關用法


注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.dtypes.complex。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。