numpy.matrix.A#

属性

property matrix.A#

self 作为 ndarray 对象返回。

等效于 np.asarray(self)

参数::
返回值::
retndarray

self 作为 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.getA()
array([[ 0,  1,  2,  3],
       [ 4,  5,  6,  7],
       [ 8,  9, 10, 11]])