tensorflow之複數操作

2021-10-03 08:27:46 字數 642 閱讀 7318

1.tensorflow複數操作

操作  描述

tf.complex(real, imag, name=none) 將兩實數轉換為複數形式

# tensor 『real』 is [2.25, 3.25]

# tensor imag is [4.75, 5.75]

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

tf.complex_abs(x, name=none) 計算複數的絕對值,即長度。

# tensor 『x』 is [[-2.25 + 4.75j], [-3.25 + 5.75j]]

tf.complex_abs(x) ==> [5.25594902, 6.60492229]

tf.conj(input, name=none) 計算共軛複數

tf.imag(input, name=none)

tf.real(input, name=none) 提取複數的虛部和實部

tf.fft(input, name=none) 計算一維的離散傅利葉變換,輸入資料型別為complex64

1.tensorflow複數操作

MATLAB筆記之複數基本公式

建立複數 z1 2 7 1i 表示式直接建立 z2 2 7 i 注意了,有時候版本要求,提示需要將 1i代替i來避免錯誤 z3 complex 2.7 建立實部為2,虛部為7的的複數 複數的實部與虛部的獲取 z0 complex 2,7 建立實部為2,虛部為7的的複數 z0 im imag z0 用...

檔案操作之複製

l複製檔案可通過file類的 copy 方法來實現 l格式為 string soupath c users administrator desktop sou 125.txt 定義字元資料夾路徑 string detpath c users administrator desktop det 126...

TensorFlow 操作簡介

在tensorflow中定義常數 import tensorflow as tf a tf.constant 1 b tf.constant 2 sess tf.session sess.run a sess.run b 進行算數運算 with tf.session as sess print ad...