本文简要介绍 python 语言中 numpy.ma.filled
的用法。
用法:
ma.filled(a, fill_value=None)
将输入作为数组返回,其中掩码数据替换为填充值。
如果a不是一个
MaskedArray
,a本身被返回。如果a是一个MaskedArray
和fill_value是无,fill_value被设定为a.fill_value
.- a: MaskedArray 或 数组
输入对象。
- fill_value: 数组,可选。
可以是标量或非标量。如果非标量,则生成的填充数组应该可以在输入数组上广播。默认为无。
- a: ndarray
填充的数组。
参数:
返回:
例子:
>>> x = np.ma.array(np.arange(9).reshape(3, 3), mask=[[1, 0, 0], ... [1, 0, 0], ... [0, 0, 0]]) >>> x.filled() array([[999999, 1, 2], [999999, 4, 5], [ 6, 7, 8]]) >>> x.filled(fill_value=333) array([[333, 1, 2], [333, 4, 5], [ 6, 7, 8]]) >>> x.filled(fill_value=np.arange(3)) array([[0, 1, 2], [0, 4, 5], [6, 7, 8]])
相关用法
- Python numpy ma.fix_invalid用法及代码示例
- Python numpy ma.flatnotmasked_edges用法及代码示例
- Python numpy ma.flatnotmasked_contiguous用法及代码示例
- Python numpy ma.fromfunction用法及代码示例
- Python numpy ma.frombuffer用法及代码示例
- Python numpy ma.indices用法及代码示例
- Python numpy ma.zeros用法及代码示例
- Python numpy ma.diff用法及代码示例
- 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 ma.compress_rowcols用法及代码示例
- Python numpy ma.vstack用法及代码示例
- Python numpy ma.atleast_3d用法及代码示例
- Python numpy ma.count用法及代码示例
- 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用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.ma.filled。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。