原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.matrix.max.html
校对:(虚位以待)
matrix.
max
(axis=None, out=None)[source]沿轴返回最大值。
参数: | 请参阅`amax`了解完整说明 |
---|
也可以看看
笔记
这与ndarray.max
相同,但返回matrix
对象,其中ndarray.max
将返回一个ndarray。
例子
>>> x = np.matrix(np.arange(12).reshape((3,4))); x
matrix([[ 0, 1, 2, 3],
[ 4, 5, 6, 7],
[ 8, 9, 10, 11]])
>>> x.max()
11
>>> x.max(0)
matrix([[ 8, 9, 10, 11]])
>>> x.max(1)
matrix([[ 3],
[ 7],
[11]])