dask.array.indices
dask.array.indices¶
- dask.array.indices(dimensions, dtype=<class 'int'>, chunks='auto')[源代码]¶
为 Dask 数组实现了 NumPy 的
indices
。生成一个覆盖所提供维度的索引网格。
最终数组的形状为
(len(dimensions), *dimensions)
。块用于指定从轴1到len(dimensions)
的块划分。第0轴始终具有长度为1的块。- 参数
- 尺寸整数序列
索引网格的形状。
- dtypedtype, 可选
用于数组的类型。默认是
int
。- 块整数序列, 字符串
每个块的大小。必须是以下形式之一:
像 (500, 1000) 这样的块大小
字节大小,如“100 MiB”,这将选择一个均匀的块状形状
单词 “auto” 的作用类似于上述,但它使用配置值
array.chunk-size
作为块大小
请注意,如果
len(array) % chunks != 0
,最后一个块的样本数将会减少。
- 返回
- 网格dask 数组