last values in for cycle
1 view (last 30 days)
Show older comments
Lets say I have vector of values. length of that vector is 350. and i want for cycle that do something with first hundred of values, then with second hundred, third hundred and in the end with the last fifty. i dont know how to deal with the last 50 values. and i have to work withh all values a work with them by hundreds. Thank you for help!!
0 Comments
Answers (1)
Image Analyst
on 18 Apr 2013
Do the for loops like this
for k = 1 : 100
% Do stuff with vector(k)
end
for k = 101 : 200
% Do stuff with vector(k)
end
for k = 201 : 300
% Do stuff with vector(k)
end
for k = 301 : 350
% Do stuff with vector(k)
end
See Also
Categories
Find more on Data Distribution Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!