numpy.matrix.ptp

原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.matrix.ptp.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

matrix.ptp(axis=None, out=None)[source]

沿给定轴的峰峰值(最大 - 最小)值。

有关完整文档,请参阅numpy.ptp

也可以看看

numpy.ptp

笔记

ndarray.ptp相同,除非返回ndarray对象,这将返回一个matrix对象。

例子

>>> x = np.matrix(np.arange(12).reshape((3,4))); x
matrix([[ 0,  1,  2,  3],
        [ 4,  5,  6,  7],
        [ 8,  9, 10, 11]])
>>> x.ptp()
11
>>> x.ptp(0)
matrix([[8, 8, 8, 8]])
>>> x.ptp(1)
matrix([[3],
        [3],
        [3]])