'Is there a Numpy array broadcasting expression simpler than this list comprehension?
In this code snippet:
triangles = np.float32([[[0, -2], [-2, 3], [1, 1]], [[0, -1], [-1, 3], [1, 1]]])
centers = np.average(triangles, axis=1)
samples = np.float32([t-centers[i] for i, t in enumerate(triangles)])
I would like to express samples as an array broadcast subtraction, i.e. something similar to triangles-centers, which doesn't work due to:
ValueError: operands could not be broadcast together with shapes (2,3,2) (2,2)
Is there a simpler way to define samples than a list comprehension?
Solution 1:[1]
I believe this does what you want. Just reshape the centers to match the row size.
samples = triangles - centers.reshape(triangles.shape[0],-1,triangles.shape[2])
Solution 2:[2]
Use numpy.mean with keepdims=True to keep a length-1 dimension in the axis you're taking the mean over:
samples = triangles - np.mean(triangles, axis=1, keepdims=True)
Solution 3:[3]
Inspired by an answer above from @Tim Roberts:
triangles = np.float32([[[0, -2], [-2, 3], [1, 1]], [[0, -1], [-1, 3], [1, 1]]])
centers = np.average(triangles, axis=1)
samples = triangles-centers[:, None, :]
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Tim Roberts |
| Solution 2 | user2357112 |
| Solution 3 | Paul Jurczak |
