matlab - Variable appears to change size on every loop iteration - what? - Stack Overflow
When writing the following Matlab code: for ii=1:n x(ii) = foo( ii ); % foo is some function of ii that cannot be vectorized. end I get the following m-lint warning: The variable x appears to change size on every loop iteration My question: What does that
stackoverflow.com |