This is documentation for an old release of NumPy (version 1.3.). Read this page in the documentation of the latest stable release (version > 1.17).
Return the combination of two masks m1 and m2.
The masks are combined with the logical_or operator, treating nomask as False. The result may equal m1 or m2 if the other is nomask.
Parameters: | m1 : array_like
m2 : array_like
copy : {False, True}, optional
shrink : {True, False}, optional
|
---|---|
Raises: | ValueError :
|