hi i was doing the following
for i = 1:m,
index = 0;
for j = 1:n,
index = index+values(i,j)*2^(j-1);
if (j==1)
symbol_chip = chip_values(index+1,:);
else
symbol_chip = [symbol_chip chip_values(index+1,:)];
end
end
end
it tells me the following: "'symbol_chip' might be growing inside the loop. Consider preallocating for speed"
Can anyone help me with this, thanks!!