numpy.matrix.std

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

译者:飞龙 UsyiyiCN

校对:(虚位以待)

matrix.std(axis=None, dtype=None, out=None, ddof=0)[source]

返回数组元素沿给定轴的标准偏差。

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

也可以看看

numpy.std

笔记

这与ndarray.std相同,除了返回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.std()
3.4520525295346629
>>> x.std(0)
matrix([[ 3.26598632,  3.26598632,  3.26598632,  3.26598632]])
>>> x.std(1)
matrix([[ 1.11803399],
        [ 1.11803399],
        [ 1.11803399]])