如何將TensorFlow的實(shí)數(shù)轉(zhuǎn)換為復(fù)數(shù)

2018-09-12 15:13 更新

tf.complex

complex( 
    real, 
    imag, 
    name=None
 )

定義在:tensorflow/python/ops/math_ops.py.

參考指南:數(shù)學(xué)函數(shù)>復(fù)數(shù)函數(shù)

將兩個(gè)實(shí)數(shù)轉(zhuǎn)換為復(fù)數(shù).

給定 real 表示復(fù)數(shù)的實(shí)部的張量和 imag 表示復(fù)數(shù)的虛部的張量,該操作的返回形式為 \(a + bj \)的元數(shù)字的復(fù)數(shù),其中 a 表示 real 部分,b 表示 imag 部分.

輸入的張量 real 和 imag 必須具有相同的形狀.

例如:

# 張量 'real' 是 [2.25, 3.25]
# 張量 `imag` 是 [4.75, 5.75]
tf.complex(real, imag) ==> [[2.25 + 4.75j], [3.25 + 5.75j]]

ARGS:

  • real:張量.必須是以下類型之一:float32,float64.
  • imag:張量.必須與 real 具有相同的類型.
  • name:操作的名稱(可選).

返回:

返回 complex64 或 complex128 類型的張量.

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號