Python Numpy ndarray.real()
在Numpy ndarray.real()方法的帮助下,我们只需使用ndarray.real()方法就可以找到虚数表达式中的实值。请记住,实数的数据类型是’float64’。
语法: ndarray.real()
返回 : 具有dtype ‘float64’的实数数组。
例子#1 :
在这个例子中,我们可以看到,我们使用ndarray.real()方法得到了实数的数组,我们还试图打印这些实数的dtype。
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([1 + 2j, 2 + 3j])
# applying ndarray.real() method
geeks = np.real(gfg)
print(geeks, end ='\n\n')
print(np.real(geeks).dtype)
输出:
[ 1. 2.]
'float64'
例子#2 :
# import the important module in python
import numpy as np
# make an array with numpy
gfg = np.array([1 + 2j, 2 + 3j])
gfg = np.sqrt(gfg)
# applying ndarray.real() method
geeks = np.real(gfg)
print(geeks, end ='\n\n')
print(np.real(geeks).dtype)
输出:
[ 1.27201965 1.67414923]
float64