本文简要介绍 python 语言中 numpy.mgrid
的用法。
用法:
numpy.mgrid = <numpy.lib.index_tricks.MGridClass object>
nd_grid 实例返回一个密集的多维“meshgrid”。
numpy.lib.index_tricks.nd_grid
的一个实例,它在索引时返回密集(或充实)mesh-grid,以便每个返回的参数具有相同的形状。输出数组的维度和数量等于索引维度的数量。如果步长不是复数,则停止不包括在内。但是,如果步长是复数(例如 5j),则其幅度的整数部分被解释为指定要在开始值和结束值之间创建的点数,其中包括结束值。
- mesh-gridndarray所有相同的尺寸
返回:
例子:
>>> np.mgrid[0:5,0:5] array([[[0, 0, 0, 0, 0], [1, 1, 1, 1, 1], [2, 2, 2, 2, 2], [3, 3, 3, 3, 3], [4, 4, 4, 4, 4]], [[0, 1, 2, 3, 4], [0, 1, 2, 3, 4], [0, 1, 2, 3, 4], [0, 1, 2, 3, 4], [0, 1, 2, 3, 4]]]) >>> np.mgrid[-1:1:5j] array([-1. , -0.5, 0. , 0.5, 1. ])
相关用法
- Python numpy ma.indices用法及代码示例
- Python numpy matrix.A1用法及代码示例
- Python numpy ma.zeros用法及代码示例
- Python numpy matrix.T用法及代码示例
- Python numpy matrix.I用法及代码示例
- Python numpy ma.diff用法及代码示例
- Python numpy mat用法及代码示例
- Python numpy ma.mask_rowcols用法及代码示例
- Python numpy ma.where用法及代码示例
- Python numpy ma.zeros_like用法及代码示例
- Python numpy ma.notmasked_contiguous用法及代码示例
- Python numpy ma.concatenate用法及代码示例
- Python numpy ma.apply_along_axis用法及代码示例
- Python numpy matrix.partition用法及代码示例
- Python numpy ma.compress_rowcols用法及代码示例
- Python numpy matrix.transpose用法及代码示例
- Python numpy ma.vstack用法及代码示例
- Python numpy ma.atleast_3d用法及代码示例
- Python numpy ma.count用法及代码示例
- Python numpy matrix.itemsize用法及代码示例
- Python numpy ma.fix_invalid用法及代码示例
- Python numpy ma.mean用法及代码示例
- Python numpy ma.argmax用法及代码示例
- Python numpy matrix.newbyteorder用法及代码示例
- Python numpy matrix.sort用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.mgrid。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。