numpy字符串操作的greater()函数

numpy字符串操作的greater()函数

numpy.core.defchararray.generate(arr1, arr2) 是另一个在numpy中进行字符串操作的函数。它逐一检查两个相同形状的字符串数组的元素,如果arr1的元素大于arr2的元素,即arr1 > arr2,则返回True,否则返回False

参数:
arr1 : 类似于str或unicode的数组。第一个输入数组。
arr2 : 类似于str或unicode的数组。第二个输入数组。
返回: [ndarray] 输出布尔数组,如果arr1和arr2是标量,则输出单个布尔。

代码#1:

# Python program explaining
# numpy.char.greater() method
 
# importing numpy
import numpy as geek
 
# input arrays 
in_arr1 = geek.array('numpy')
print ("1st Input array : ", in_arr1)
 
in_arr2 = geek.array('numpy')
print ("2nd Input array : ", in_arr2) 
 
# checking if in_arr1 > in_arr2
out_arr = geek.char.greater(in_arr1, in_arr2)
print ("Output array: ", out_arr)

输出:

1st Input array :  numpy
2nd Input array :  nump
Output array:  True

代码#2:

# Python program explaining
# numpy.char.greater() method
 
# importing numpy
import numpy as geek
 
# input arrays 
in_arr1 = geek.array(['Geeks', 'for', 'Geek', 'numpy'])
print ("1st Input array : ", in_arr1)
 
in_arr2 = geek.array(['Geek', 'for', 'Geek', 'Numpy'])
print ("2nd Input array : ", in_arr2)
 
# checking if in_arr1 > in_arr2
out_arr = geek.char.greater(in_arr1, in_arr2)
print ("Output array: ", out_arr)

输出:

1st Input array :  ['Geeks' 'for' 'Geek' 'numpy']
2nd Input array :  ['Geek' 'for' 'Geek' 'Numpy']
Output array:  [ True False False  True]

代码#3:

# Python program explaining
# numpy.char.greater() method
 
# importing numpy
import numpy as geek
 
# input arrays 
in_arr1 = geek.array(['10', '11', '122', '15'])
print ("1st Input array : ", in_arr1)
 
in_arr2 = geek.array(['10', '13', '121', '14'])
print ("2nd Input array : ", in_arr2)
 
 
# checking if in_arr1 > in_arr2
out_arr = geek.char.greater(in_arr1, in_arr2)
print ("Output array: ", out_arr)

输出:

1st Input array :  ['10' '11' '122' '15']
2nd Input array :  ['10' '13' '121' '14']
Output array:  [False False  True  True]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程