Problem 233. Reverse the vector
Reverse the vector elements.
Example:
Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]
Solution Stats
Problem Comments
-
8 Comments
Show
5 older comments
Ned Gulley
on 2 Feb 2012
Added some more tests.
Nicholas Howe
on 13 Apr 2012
Test set needs a column vector.
Kristin
on 18 May 2012
As far as timing goes ...
x=rand(100,1);
tic;y=flipud(x);toc
Elapsed time is 0.068947 seconds.
tic;y=x(end:-1:1);toc
Elapsed time is 0.000026 seconds.
Muhammad M Sahari
on 20 Dec 2016
innovative
Nicholas Bitler
on 26 Nov 2020
thanks Kristin but I got it on my own
Roberto DADDA
on 9 Dec 2020
I'm not understanding why sort(x, 'descend') is not correct. On matlab works.
Isabella Stellitano
on 26 Oct 2021
GOOD
Gizem Deniz Akkas
on 18 Apr 2022
function y = rev(x)
y=sort(x,'descend');
end
i'm doing like this but i have 1 assertion error ? what's wrong?
Solution Comments
Show commentsProblem Recent Solvers14101
Suggested Problems
-
2269 Solvers
-
2053 Solvers
-
2300 Solvers
-
484 Solvers
-
Find out sum of all elements of given Matrix
501 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!