Suppose I have a nxm matrix A and nx1 column-vector B. I perform an inner product using transpose(A) * B. This works fine.
However, I would like to not have to transpose A and still get the same result.
Is there a way to get the same result without transposing A (possibly with a transpose of B?)
My linear algebra skills aren't too great. Hoping to get help from the experts here.