numpy.char.greater#
- char.greater(x1, x2)[source]#
逐元素返回 (x1 > x2)。
与
numpy.greater
不同,此比较通过首先从字符串末尾去除空格字符来执行。此行为是为了与 numarray 保持向后兼容。- 参数:
- x1, x2str 或 unicode 的类数组
相同形状的输入数组。
- 返回:
- outndarray
布尔值的输出数组。
参见
示例
>>> import numpy as np >>> x1 = np.array(['a', 'b', 'c']) >>> np.char.greater(x1, 'b') array([False, False, True])