array transformation

3 views (last 30 days)
Mate 2u
Mate 2u on 24 Jan 2012
I have a 2:790 array. I want to transform the 790 elements so that the top element becomes the bottom element and the second element becomes the second bottom etc.....so essentially I want to turn it around. Can anybody help me?

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 24 Jan 2012
doc flipud
eg:
a = randi(10,2,10)
out = flipud(a)
OR
out = a(end:-1:1,:)

More Answers (0)

Community Treasure Hunt

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

Start Hunting!