I have a matrix A of zise MxN, and vector b of size L. how can I create a matrix C of size MxNxL such that:
C[m, n, k] = A[m, n] * b[k]
pretty much the same as dot product of two vectors to create 2D matrix, but with one dimention higher.
I had tried some variations of a dot product but I couldnt find it.