Backwards/Reverse in "Direct" For Loop

Is there a way to back backwards in a "direct" for loop?
If I had the vector A = [1 4 7 8]
How would I make it where:
for i = 1:A
increments backwards starting from 8?

Antworten (1)

James Tursa
James Tursa am 15 Mär. 2018
Bearbeitet: James Tursa am 15 Mär. 2018

1 Stimme

for k=numel(A):-1:1
k would have the values 4, 3, 2, 1 in turn. So indexing using A(k) you would be accessing A(4), A(3), A(2), and A(1) in turn.

2 Kommentare

Mark Tenorio
Mark Tenorio am 15 Mär. 2018
I will try this and see if this works.
I just want my for loop to go from 8, 7,4, 1 when I am using k as a variable.
Mark Tenorio
Mark Tenorio am 15 Mär. 2018
Nevermind. I can just use fliplr.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 15 Mär. 2018

Kommentiert:

am 15 Mär. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by