Cálculos con Arrays 2. Broadcasting
Introducción a Broadcasting¶
import numpy as np
a = np.array([0, 1, 2])
b = np.array([5, 5, 5])
a + b
a + 5
M = np.ones((3, 3))
M
M + a
a = np.arange(3)
b = np.arange(3)[:, np.newaxis]
print(a)
print(b)
a + b
Reglas del Broadcasting¶
- Rule 1: If the two arrays differ in their number of dimensions, the shape of the one with fewer dimensions is padded with ones on its leading (left) side.
- Rule 2: If the shape of the two arrays does not match in any dimension, the array with shape equal to 1 in that dimension is stretched to match the other shape.
- Rule 3: If in any dimension the sizes disagree and neither is equal to 1, an error is raised.
To make these rules clear, let's consider a few examples in detail.
Broadcasting ejemplo 1¶
M = np.ones((2, 3))
a = np.arange(3)
Let's consider an operation on these two arrays. The shape of the arrays are
M.shape = (2, 3)
a.shape = (3,)
We see by rule 1 that the array a
has fewer dimensions, so we pad it on the left with ones:
M.shape -> (2, 3)
a.shape -> (1, 3)
By rule 2, we now see that the first dimension disagrees, so we stretch this dimension to match:
M.shape -> (2, 3)
a.shape -> (2, 3)
The shapes match, and we see that the final shape will be (2, 3)
:
M + a
Broadcasting ejemplo 2¶
a = np.arange(3).reshape((3, 1))
b = np.arange(3)
Again, we'll start by writing out the shape of the arrays:
a.shape = (3, 1)
b.shape = (3,)
Rule 1 says we must pad the shape of b
with ones:
a.shape -> (3, 1)
b.shape -> (1, 3)
And rule 2 tells us that we upgrade each of these ones to match the corresponding size of the other array:
a.shape -> (3, 3)
b.shape -> (3, 3)
Because the result matches, these shapes are compatible. We can see this here:
a + b
Broadcasting ejemplo 3¶
M = np.ones((3, 2))
a = np.arange(3)
This is just a slightly different situation than in the first example: the matrix M
is transposed.
How does this affect the calculation? The shape of the arrays are
M.shape = (3, 2)
a.shape = (3,)
Again, rule 1 tells us that we must pad the shape of a
with ones:
M.shape -> (3, 2)
a.shape -> (1, 3)
By rule 2, the first dimension of a
is stretched to match that of M
:
M.shape -> (3, 2)
a.shape -> (3, 3)
Now we hit rule 3–the final shapes do not match, so these two arrays are incompatible, as we can observe by attempting this operation:
M + a
Note the potential confusion here: you could imagine making a
and M
compatible by, say, padding a
's shape with ones on the right rather than the left.
But this is not how the broadcasting rules work!
That sort of flexibility might be useful in some cases, but it would lead to potential areas of ambiguity.
If right-side padding is what you'd like, you can do this explicitly by reshaping the array (we'll use the np.newaxis
keyword introduced in The Basics of NumPy Arrays):
a[:, np.newaxis].shape
M + a[:, np.newaxis]
Also note that while we've been focusing on the +
operator here, these broadcasting rules apply to any binary ufunc
.
For example, here is the logaddexp(a, b)
function, which computes log(exp(a) + exp(b))
with more precision than the naive approach:
np.logaddexp(M, a[:, np.newaxis])
For more information on the many available universal functions, refer to Computation on NumPy Arrays: Universal Functions.
Broadcasting en práctica¶
Centralidad. Subtraer el promedio de un array¶
X = np.random.random((10, 3))
Xmean = X.mean(0)
Xmean
X_centered = X - Xmean
X_centered.mean(0)
Graficando una funcion en dos dimensiones¶
# x and y have 50 steps from 0 to 5
x = np.linspace(0, 5, 50)
y = np.linspace(0, 5, 50)[:, np.newaxis]
z = np.sin(x) ** 10 + np.cos(10 + y * x) * np.cos(x)
%matplotlib inline
import matplotlib.pyplot as plt
plt.imshow(z, origin='lower', extent=[0, 5, 0, 5],
cmap='viridis')
plt.colorbar();