能举个np.maximum.accumulate的例子吗
时间: 2023-06-01 17:05:36 浏览: 335
C++参考pdf(用了才知pdf不适用,不要下)
当我们有一个数组时,该数组的np.maximum.accumulate版本返回的是从左到右的最大值。比如,当我们有一个数组 [1, 3, 2, 5, 4, 7, 8, 4],np.maximum.accumulate版本将返回 [1, 3, 3, 5, 5, 7, 8, 8],因为它不断地返回从左到右的最大值。
阅读全文