How do I reverse a vector?
Show older comments
For example, how would I change x=[1 2 3 4] to x=[ 4 3 2 1]?
Answers (1)
Roger Stafford
on 16 Feb 2015
x = fliplr(x);
Categories
Find more on NaNs in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!