numpy.matrix.std¶
-
matrix.
std
(axis=None, dtype=None, out=None, ddof=0)[source]¶ 返回数组元素沿给定轴的标准偏差。
有关完整文档,请参阅
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]])