Is there an easy way to take the dot product of one element of an array with every other? So given:
array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])
I would like to get the result:
array([ 32., 50., 122.])
I.e. a[0] dot a[1], a[0] dot a[2], a[1] dot a[2].
The array I am working with will NOT be square; that's just an example.
Thanks!