broadcast_arrays

broadcast_arrays(*arrays: array) Tuple[array, ...]

Broadcasts one or more arrays against one another.

Parameters:

arrays (array) – an arbitrary number of to-be broadcasted arrays.

Returns:

out (Tuple[array, …]) – tuple of broadcasted arrays. Each array must have the same shape. Each array must have the same dtype as its corresponding input array.