How would one reverse the order of an array using a while loop?

10 Ansichten (letzte 30 Tage)
For this homework question I am asked to write a program using the while loop that will display a given row or column vector in reverse.

Akzeptierte Antwort

Asad (Mehrzad) Khoddam
Asad (Mehrzad) Khoddam am 30 Okt. 2016
if v is the vector:
n=length(v);
while n>0
disp(v(n));
n=n-1;
end
  2 Kommentare
Justin Keach
Justin Keach am 30 Okt. 2016
Thank you! That works, but now I need to convert each output back into a vector so that if v=[1 2 3 4] my answer will return as v1= [4 3 2 1]. My current attempts have only returned my row vector as the final element/final output of the loop.
Justin Keach
Justin Keach am 30 Okt. 2016
v=Array2;
k=length(v);
while k>0;
disp(v(k));
k=k-1;
end
disp(['The original array was: ' mat2str(v)]);

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 30 Okt. 2016
Supposed the length of your vector is L. Then you want to copy position j to position L-j+1 in the new vector. For example, length 6, position 1 gets written to position 6-1+1 = 6; position 2 gets written to position 6-2+1 = 5, position 3 to position 6-3+1 = 4, and so on.
  2 Kommentare
Justin Keach
Justin Keach am 31 Okt. 2016
How would you implement this into a while loop? I understand what you mean, but I'm not sure how to write it in a program.
Walter Roberson
Walter Roberson am 31 Okt. 2016
In your code above,
k=length(v);
and then
L = k;
and then entry k of input corresponds to entry L-k+1 of output.

Melden Sie sich an, um zu kommentieren.

Kategorien

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

Community Treasure Hunt

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

Start Hunting!

Translated by