In MATLAB the following for loop:
for
for i = [1:100]\' %\'// Do something, such as disp(i) end
isn\'t apparently really impl
This is not correct. The code:
for i=1:100 disp(i) end
will print all the values 1 through 100 consecutively. While Matlab does encourage vectorization, you can definitely use traditional loops with the style of coding you used above.