本文簡要介紹 python 語言中 numpy.ma.all
的用法。
用法:
ma.all(self, axis=None, out=None, keepdims=<no value>) = <numpy.ma.core._frommethod object>
如果所有元素的計算結果都為 True,則返回 True。
輸出數組被屏蔽,其中沿給定軸的所有值都被屏蔽:如果輸出是標量並且所有值都被屏蔽,則輸出為
masked
。有關完整文檔,請參閱
numpy.all
。例子:
>>> np.ma.array([1,2,3]).all() True >>> a = np.ma.array([1,2,3], mask=True) >>> (a.all() is np.ma.masked) True
相關用法
- Python numpy ma.allclose用法及代碼示例
- Python numpy ma.allequal用法及代碼示例
- Python numpy ma.apply_along_axis用法及代碼示例
- Python numpy ma.atleast_3d用法及代碼示例
- Python numpy ma.argmax用法及代碼示例
- Python numpy ma.argmin用法及代碼示例
- Python numpy ma.asarray用法及代碼示例
- Python numpy ma.append用法及代碼示例
- Python numpy ma.average用法及代碼示例
- Python numpy ma.atleast_2d用法及代碼示例
- Python numpy ma.anomalies用法及代碼示例
- Python numpy ma.array用法及代碼示例
- Python numpy ma.atleast_1d用法及代碼示例
- Python numpy ma.arange用法及代碼示例
- Python numpy ma.anom用法及代碼示例
- Python numpy ma.apply_over_axes用法及代碼示例
- Python numpy ma.asanyarray用法及代碼示例
- Python numpy ma.argsort用法及代碼示例
- 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用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.ma.all。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。