numpy.matrix.base#

属性

matrix.base#

如果内存来自其他对象,则为基础对象.

示例

拥有其内存的数组的基础是 None:

>>> import numpy as np
>>> x = np.array([1,2,3,4])
>>> x.base is None
True

切片创建一个视图,其内存与 x 共享:

>>> y = x[2:]
>>> y.base is x
True