返回复数(或实数)张量的实部。
用法
tf.math.real(
input, name=None
)
参数
-
input
一个Tensor
。必须是数字类型。 -
name
操作的名称(可选)。
返回
-
Tensor
类型为float32
或float64
。
给定一个张量 input
,此操作返回一个类型为 float
的张量,它是 input
中每个元素的实部,被视为复数。
例如:
x = tf.constant([-2.25 + 4.75j, 3.25 + 5.75j])
tf.math.real(x) # [-2.25, 3.25]
如果input
已经是真实的,则原样返回。
相关用法
- Python tf.math.reduce_max用法及代码示例
- Python tf.math.reduce_min用法及代码示例
- Python tf.math.reduce_std用法及代码示例
- Python tf.math.reduce_logsumexp用法及代码示例
- Python tf.math.reduce_mean用法及代码示例
- Python tf.math.reduce_all用法及代码示例
- Python tf.math.reduce_euclidean_norm用法及代码示例
- Python tf.math.reduce_sum用法及代码示例
- Python tf.math.reduce_variance用法及代码示例
- Python tf.math.reduce_any用法及代码示例
- Python tf.math.reduce_prod用法及代码示例
- Python tf.math.reciprocal_no_nan用法及代码示例
- Python tf.math.rsqrt用法及代码示例
- Python tf.math.rint用法及代码示例
- Python tf.math.round用法及代码示例
- Python tf.math.special.fresnel_cos用法及代码示例
- Python tf.math.polyval用法及代码示例
- Python tf.math.is_finite用法及代码示例
- Python tf.math.special.bessel_k0e用法及代码示例
- Python tf.math.acosh用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.math.real。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。