I would like to pairwise compare (with <=
) all elements of two NumPy ndarray
s A
and B
, where both arrays can have arbitrary dimensions m and n, such that the result is an array of dimension m + n.
I know how to do it for given dimension of B
.
scalar:
A <= B
one-dimensional:
A[..., np.newaxis] <= B
two-dimensional:
A[..., np.newaxis, np.newaxis] <= B
Basically, I'm looking for a way to insert as many np.newaxis
as there are dimensions in the second array.
Is there a syntax like np.newaxis * B.ndim
, or another way?
There's builtin for that -
Another way would be with reshaping to accomodate new axes -