numpy.char.greater_equal#

char.greater_equal(x1, x2)[源代码]#

返回 (x1 >= x2) 逐元素.

numpy.greater_equal 不同,此比较首先从字符串末尾去除空白字符.此行为是为了与 numarray 的向后兼容性而提供的.

参数:
x1, x2str 或 unicode 的类数组对象

输入形状相同的数组.

返回:
outndarray

输出布尔数组.

示例

>>> import numpy as np
>>> x1 = np.array(['a', 'b', 'c'])
>>> np.char.greater_equal(x1, 'b')
array([False,  True,  True])