torch.real

torch.real(input) Tensor

返回一个新张量,其中包含self 张量的实数值。返回的张量与self 使用同一底层存储。

参数

input (Tensor) – 需要输入的张量。

示例:

>>> x=torch.randn(4, dtype=torch.cfloat)
>>> x
tensor([(0.3100+0.3553j), (-0.5445-0.7896j), (-1.6492-0.0633j), (-0.0638-0.8119j)])
>>> x.real
tensor([ 0.3100, -0.5445, -1.6492, -0.0638])
本页目录