This is part of a series of perl function which were very helpful for many perl programmers. Could you implement it in Matlab?
Shifts the first value of the array off and returns it, shortening the array by 1 and moving everything down.
Example:
x=[1 2 3 4 5]
[a, x]=shift(x)
then
x=[2 3 4 5]
a=1
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers66
Suggested Problems
-
Sort a list of complex numbers based on far they are from the origin.
5798 Solvers
-
Find the peak 3n+1 sequence value
2567 Solvers
-
450 Solvers
-
Get the length of a given vector
13041 Solvers
-
07 - Common functions and indexing 5
430 Solvers
More from this Author3
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Error in the example (x=[2 3 4 5])
Typo, thanks!
The test suite has been updated to use isempty instead of isequal, and test cases have been added.