How to flip an array without using the flip command ?
Mostra commenti meno recenti
- Given an row vector A of any size say n
- I want to create a vector B of Size n with the last element of A as the First elelment of B and the first element of A as the last element of B
- I want to create the array B without using the FLIP command but preferably by a for loop
1 Commento
sandeep das
il 3 Mag 2022
Risposta accettata
Più risposte (1)
Walter Roberson
il 3 Mag 2022
0 voti
If the vector V length is N then the first output is V(N), the second is V(N-1), the third is V(N-2)....
You should be able to generalize to what location the Kth output is from.
Categorie
Scopri di più su MATLAB in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!