Numpy 的 base
属性返回数组的基础对象。如果对象 B 派生自对象 A(即共享内存位置),则对象 A 将是对象 B 的基础。
例子
考虑以下代码片段:
a = np.array([1,2])
b = a.view()
b.base is a
True
这里,数组 b
与 a
共享相同的内存地址(从技术上讲,b
是 a
的视图),因此 b.base is a
的计算结果为 True
。
相关用法
- Python base64.b64decode()用法及代码示例
- Python base64.b32decode()用法及代码示例
- Python base64.b85encode()用法及代码示例
- Python base64.b64encode()用法及代码示例
- Python base64.decodebytes(s)用法及代码示例
- Python base64.a85encode()用法及代码示例
- Python base64.decodestring(s)用法及代码示例
- Python base64.urlsafe_b64decode(s)用法及代码示例
- Python base64.b16encode()用法及代码示例
- Python base64.standard_b64decode(s)用法及代码示例
- Python base64.encodebytes(s)用法及代码示例
- Python base64.encodestring(s)用法及代码示例
- Python base64.b85decode()用法及代码示例
- Python base64.b16decode()用法及代码示例
- Python base64.urlsafe_b64encode(s)用法及代码示例
- Python base64.a85decode()用法及代码示例
- Python base64.standard_b64encode(s)用法及代码示例
- Python base64.b32encode()用法及代码示例
- Python NumPy busdaycalendar对象用法及代码示例
- Python binascii.crc32用法及代码示例
- Python bytes.isupper用法及代码示例
- Python bokeh.plotting.figure.asterisk()用法及代码示例
- Python bytes.zfill用法及代码示例
- Python binary转string用法及代码示例
- Python bytes.expandtabs用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | base property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。