I tried to make the title say it all.
I have a matrix and I need to computer the sum of the outer products of combinations of columns. I know how to do it with for-loops. But, is there a vectorized way to do it?
testData = rand(x);
answer = zeros(x);
for i=1:x
for j=1:x
answer = answer + testData(:,i)'*testData(:,j);
end
end