M-Lint will throw this warning if you have a variable that grows inside a loop without being preallocated. You can remove this error by pre-allocating the collection variable.
For instance, if you knew that the variable symbol_chip would have at most i*j elements, you could preallocate it with the statement:
symbol_chip = zeros(i*j);
However, for most applications preallocation will only have a negligible effect on algorithm performance. I would only worry about it if you are dealing with very large data sets.