Azzera filtri
Azzera filtri

for loop indexing and skip numbers

18 visualizzazioni (ultimi 30 giorni)
Damith
Damith il 28 Mag 2014
Commentato: Abraxas il 25 Apr 2019
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.

Risposta accettata

Roger Stafford
Roger Stafford il 28 Mag 2014
You can also use
ix = floor((4*(1:n)+2)/3);
where n is the desired length of the output.

Più risposte (3)

the cyclist
the cyclist il 28 Mag 2014
for n = [2 3 4 6 7 8 13]
disp(n)
end
  5 Commenti
Damith
Damith il 28 Mag 2014
Thanks. It worked.
Abraxas
Abraxas il 25 Apr 2019
I've been searching 2 days for this answer! Thank you so much!

Accedi per commentare.


the cyclist
the cyclist il 28 Mag 2014
Yet another method:
idx = bsxfun(@plus,[1 2 3]',1:4:100)
for ii = idx(:)
disp(ii)
end

the cyclist
the cyclist il 29 Mag 2014
Yet another method:
idx = filter([1 1 1 1],[1 1 1 0],1:100)+1

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by