本文简要介绍 python 语言中 numpy.ma.set_fill_value
的用法。
用法:
ma.set_fill_value(a, fill_value)
如果 a 是掩码数组,则设置 a 的填充值。
此函数更改掩码数组 a 的填充值。如果 a 不是掩码数组,则函数静默返回,不做任何事情。
- a: array_like
输入数组。
- fill_value: 类型
填充值。执行一致性测试以确保该值与 a 的 dtype 兼容。
- None
此函数没有返回任何内容。
参数:
返回:
例子:
>>> import numpy.ma as ma >>> a = np.arange(5) >>> a array([0, 1, 2, 3, 4]) >>> a = ma.masked_where(a < 3, a) >>> a masked_array(data=[--, --, --, 3, 4], mask=[ True, True, True, False, False], fill_value=999999) >>> ma.set_fill_value(a, -999) >>> a masked_array(data=[--, --, --, 3, 4], mask=[ True, True, True, False, False], fill_value=-999)
如果 a 不是掩码数组,则不会发生任何事情。
>>> a = list(range(5)) >>> a [0, 1, 2, 3, 4] >>> ma.set_fill_value(a, 100) >>> a [0, 1, 2, 3, 4] >>> a = np.arange(5) >>> a array([0, 1, 2, 3, 4]) >>> ma.set_fill_value(a, 100) >>> a array([0, 1, 2, 3, 4])
相关用法
- Python numpy ma.sum用法及代码示例
- Python numpy ma.sort用法及代码示例
- Python numpy ma.stack用法及代码示例
- Python numpy ma.size用法及代码示例
- Python numpy ma.shape用法及代码示例
- Python numpy ma.squeeze用法及代码示例
- 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.fix_invalid用法及代码示例
- Python numpy ma.mean用法及代码示例
- Python numpy ma.argmax用法及代码示例
- Python numpy ma.empty_like用法及代码示例
- Python numpy ma.hstack用法及代码示例
- Python numpy ma.isMA用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.ma.set_fill_value。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。