Is there a more efficient way of performing the below code, avoiding the for loop?
for n = 1 : 400 d(:,n) = a\'*(b(:,n) - c); end
Thanks