Python numpy.common_type()函数

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'

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Numpy教程