本文简要介绍 python 语言中 numpy.ma.flatnotmasked_contiguous
的用法。
用法:
ma.flatnotmasked_contiguous(a)
沿给定轴在掩码数组中查找连续的未掩码数据。
- a: narray
输入数组。
- slice_list: 列表
切片对象的排序序列(开始索引,结束索引)。
参数:
返回:
注意:
最多只接受二维数组。
例子:
>>> a = np.ma.arange(10) >>> np.ma.flatnotmasked_contiguous(a) [slice(0, 10, None)]
>>> mask = (a < 3) | (a > 8) | (a == 5) >>> a[mask] = np.ma.masked >>> np.array(a[~a.mask]) array([3, 4, 6, 7, 8])
>>> np.ma.flatnotmasked_contiguous(a) [slice(3, 5, None), slice(6, 9, None)] >>> a[:] = np.ma.masked >>> np.ma.flatnotmasked_contiguous(a) []
相关用法
- Python numpy ma.flatnotmasked_edges用法及代码示例
- Python numpy ma.fix_invalid用法及代码示例
- Python numpy ma.filled用法及代码示例
- 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.flatnotmasked_contiguous。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。