numpy.matrix.ptp#
方法
- matrix.ptp(axis=None, out=None)[源代码]#
沿给定轴的峰峰值(最大值 - 最小值)。
有关完整文档,请参阅
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]])