for loop indexing and skip numbers
12 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I need to include for loop in MATLAB to start with 2:13. But I need to start with 2,3,4 and skip 5 and again 6,7,8 and skip 9 and 10,11,12 until 13.
How can I implement this is for loop?
Many thanks in advance.
0 commentaires
Réponse acceptée
Roger Stafford
le 28 Mai 2014
You can also use
ix = floor((4*(1:n)+2)/3);
where n is the desired length of the output.
Plus de réponses (3)
the cyclist
le 28 Mai 2014
Yet another method:
idx = bsxfun(@plus,[1 2 3]',1:4:100)
for ii = idx(:)
disp(ii)
end
Voir également
Catégories
En savoir plus sur Startup and Shutdown dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!