numpy.chararray.base

原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.chararray.base.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

chararray.base

如果内存是来自某个其他对象的基本对象。

例子

拥有其内存的数组的基数为None:

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

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

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