原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.chararray.real.html
校对:(虚位以待)
chararray.
real
数组的真实部分。
也可以看看
numpy.real
例子
>>> x = np.sqrt([1+0j, 0+1j])
>>> x.real
array([ 1. , 0.70710678])
>>> x.real.dtype
dtype('float64')