Return the dot product of two 2D masked arrays a and b.
Like the generic numpy equivalent, the product sum is over the last dimension of a and the second-to-last dimension of b. If strict is True, masked values are propagated: if a masked value appears in a row or column, the whole row or column is considered masked.
Parameters: | strict : {boolean}
|
---|
Notes
The first argument is not conjugated.