Skip to content
Advertisement

How to do an outer product of 3 vectors to create a 3d matrix in numpy? (and same for nd)

If i want to do an outer product of 2 vectors to create a 2d matrix, each element a product of the two respective elements in the original vectors:

JavaScript

I want the same for 3 (or for n) vectors.

An equivalent non numpy answer:

JavaScript

out:

JavaScript

How to do this with numpy [no for loops]?


Also, how to do this for a general function, not necessarily *?

Advertisement

Answer

NumPy provides you with np.outer() for computing the outer product. This is a less powerful version of more versatile approaches:

np.einsum() is the only one capable of handling more than two input arrays:

JavaScript

Of course, the broadcasting approach (which is the same that you used with the array.reshape() version of your code, except that it uses a slightly different syntax for providing the correct shape), can be automatized by explicitly building the slicing (or equivalently the array.reshape() parameters).

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement