当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.math.real用法及代码示例


返回复数(或实数)张量的实部。

用法

tf.math.real(
    input, name=None
)

参数

  • input 一个Tensor。必须是数字类型。
  • name 操作的名称(可选)。

返回

  • Tensor 类型为 float32float64

给定一个张量 input ,此操作返回一个类型为 float 的张量,它是 input 中每个元素的实部,被视为复数。

例如:

x = tf.constant([-2.25 + 4.75j, 3.25 + 5.75j])
tf.math.real(x)  # [-2.25, 3.25]

如果input 已经是真实的,则原样返回。

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.math.real。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。