numpy.char.chararray.real#

属性

char.chararray.real#

数组的实部。

另请参见

numpy.real

等效函数

示例

>>> import numpy as np
>>> x = np.sqrt([1+0j, 0+1j])
>>> x.real
array([ 1.        ,  0.70710678])
>>> x.real.dtype
dtype('float64')