def _check_mask_axis(mask, axis):
"Check whether there are masked values along the given axis"
if mask is not nomask:
return mask.all(axis=axis)
return nomask
###############################################################################
# Masking functions #
###############################################################################
评论列表
文章目录