返回複數的實部。
用法
tf.raw_ops.Real(
input, Tout=tf.dtypes.float32, name=None
)
參數
-
input
一個Tensor
。必須是以下類型之一:complex64
、complex128
。 -
Tout
一個可選的tf.DType
來自:tf.float32, tf.float64
。默認為tf.float32
。 -
name
操作的名稱(可選)。
返回
-
Tensor
類型為Tout
。
給定一個張量input
複數,此操作返回類型的張量float
這是每個元素的實部input
.中的所有元素input
必須是複數形式 ,其中a是此操作返回的實部,並且b是虛部。
例如:
# tensor 'input' is [-2.25 + 4.75j, 3.25 + 5.75j]
tf.real(input) ==> [-2.25, 3.25]
相關用法
- Python tf.raw_ops.ReadVariableXlaSplitND用法及代碼示例
- Python tf.raw_ops.ResourceScatterNdSub用法及代碼示例
- Python tf.raw_ops.ResourceScatterMul用法及代碼示例
- Python tf.raw_ops.ReduceJoin用法及代碼示例
- Python tf.raw_ops.ResourceScatterAdd用法及代碼示例
- Python tf.raw_ops.ResourceScatterMax用法及代碼示例
- Python tf.raw_ops.ResourceScatterMin用法及代碼示例
- Python tf.raw_ops.Relu用法及代碼示例
- Python tf.raw_ops.ReverseV2用法及代碼示例
- Python tf.raw_ops.ResourceGather用法及代碼示例
- Python tf.raw_ops.Reverse用法及代碼示例
- Python tf.raw_ops.Reshape用法及代碼示例
- Python tf.raw_ops.ResourceScatterNdAdd用法及代碼示例
- Python tf.raw_ops.ResourceScatterNdUpdate用法及代碼示例
- Python tf.raw_ops.ResourceScatterSub用法及代碼示例
- Python tf.raw_ops.ResourceScatterUpdate用法及代碼示例
- Python tf.raw_ops.ResourceScatterDiv用法及代碼示例
- Python tf.raw_ops.RegexFullMatch用法及代碼示例
- Python tf.raw_ops.ReverseSequence用法及代碼示例
- Python tf.raw_ops.RaggedGather用法及代碼示例
- Python tf.raw_ops.RGBToHSV用法及代碼示例
- Python tf.raw_ops.Range用法及代碼示例
- Python tf.raw_ops.RaggedCross用法及代碼示例
- Python tf.raw_ops.RandomShuffle用法及代碼示例
- Python tf.raw_ops.RaggedRange用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.raw_ops.Real。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。