本文简要介绍 python 语言中 numpy.ma.zeros_like
的用法。
用法:
ma.zeros_like(*args, **kwargs) = <numpy.ma.core._convert2ma object>
返回与给定数组具有相同形状和类型的零数组。
- a: array_like
a 的形状和数据类型定义了返回数组的这些相同属性。
- dtype: 数据类型,可选
覆盖结果的数据类型。
- order: {‘C’、‘F’、‘A’或‘K’},可选
覆盖结果的内存布局。 “C”表示C-order,“F”表示F-order,如果 a 是 Fortran 连续的,“A”表示“F”,否则表示“C”。 ‘K’表示尽可能匹配a的布局。
- subok: 布尔值,可选。
如果为True,那么新创建的数组将使用a的sub-class类型,否则它将是base-class数组。默认为真。
- shape: int 或整数序列,可选。
覆盖结果的形状。如果 order='K' 且维数不变,将尝试保持 order,否则,隐含 order='C'。
- out: MaskedArray
具有与 a 相同形状和类型的零数组。
参数:
返回:
例子:
>>> x = np.arange(6) >>> x = x.reshape((2, 3)) >>> x array([[0, 1, 2], [3, 4, 5]]) >>> np.zeros_like(x) array([[0, 0, 0], [0, 0, 0]])
>>> y = np.arange(3, dtype=float) >>> y array([0., 1., 2.]) >>> np.zeros_like(y) array([0., 0., 0.])
相关用法
- Python numpy ma.zeros用法及代码示例
- Python numpy ma.indices用法及代码示例
- Python numpy ma.diff用法及代码示例
- Python numpy ma.mask_rowcols用法及代码示例
- Python numpy ma.where用法及代码示例
- Python numpy ma.notmasked_contiguous用法及代码示例
- Python numpy ma.concatenate用法及代码示例
- Python numpy ma.apply_along_axis用法及代码示例
- Python numpy ma.compress_rowcols用法及代码示例
- Python numpy ma.vstack用法及代码示例
- Python numpy ma.atleast_3d用法及代码示例
- Python numpy ma.count用法及代码示例
- Python numpy ma.fix_invalid用法及代码示例
- Python numpy ma.mean用法及代码示例
- Python numpy ma.argmax用法及代码示例
- Python numpy ma.empty_like用法及代码示例
- Python numpy ma.hstack用法及代码示例
- Python numpy ma.isMA用法及代码示例
- Python numpy ma.argmin用法及代码示例
- Python numpy ma.asarray用法及代码示例
- Python numpy ma.set_fill_value用法及代码示例
- Python numpy ma.is_mask用法及代码示例
- Python numpy ma.is_masked用法及代码示例
- Python numpy ma.cumsum用法及代码示例
- Python numpy ma.inner用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.ma.zeros_like。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。