Python numpy.common_type()函数
numpy.common_type()函数返回一个标量类型,该类型是输入数组所共有的。
语法: numpy.common_type(arrays)
参数 :
array1, array2, …. : [ndarrays] 输入数组。
返回: [dtype] 返回输入数组共有的数据类型。
代码#1:
# Python program explaining
# numpy.common_type() function
# importing numpy as geek
import numpy as geek
gfg = geek.common_type(geek.arange(2, dtype = geek.float32))
print (gfg)
输出 :
class 'numpy.float32'
代码#2:
# Python program explaining
# numpy.common_type() function
# importing numpy as geek
import numpy as geek
gfg = geek.common_type(geek.arange(2, dtype = geek.float32), geek.arange(2))
print (gfg)
输出 :
class 'numpy.float64'