numpy.char.greater#
- char.greater(x1, x2)[源代码]#
逐元素返回 (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])