real

paddle. real ( x, name=None ) [源代码]

返回一个包含输入复数Tensor的实部数值的新Tensor。

参数:

  • x (Tensor) - 输入Tensor,其数据类型可以为complex64或complex128。

  • name (str,可选) - 具体用法请参见 Name ,一般无需设置,默认值为None。

返回:Tensor,包含原复数Tensor的实部数值。

代码示例

  1. import paddle
  2. x = paddle.to_tensor(
  3. [[1 + 6j, 2 + 5j, 3 + 4j], [4 + 3j, 5 + 2j, 6 + 1j]])
  4. # Tensor(shape=[2, 3], dtype=complex64, place=CUDAPlace(0), stop_gradient=True,
  5. # [[(1+6j), (2+5j), (3+4j)],
  6. # [(4+3j), (5+2j), (6+1j)]])
  7. real_res = paddle.real(x)
  8. # Tensor(shape=[2, 3], dtype=float32, place=CUDAPlace(0), stop_gradient=True,
  9. # [[1., 2., 3.],
  10. # [4., 5., 6.]])
  11. real_t = x.real()
  12. # Tensor(shape=[2, 3], dtype=float32, place=CUDAPlace(0), stop_gradient=True,
  13. # [[1., 2., 3.],
  14. # [4., 5., 6.]])