Problem 2918. Matlab Basics II - Extract last 3 elements of a vector
Let x be a vector of unknown length, we are always interested in the last 3 numbers in the vector, write a function that gives those numbers for any vector x
example:
x = [1 2 3 4]
output = [2 3 4]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers256
Suggested Problems
-
619 Solvers
-
520 Solvers
-
630 Solvers
-
1846 Solvers
-
Flip the vector from right to left
10348 Solvers
More from this Author28
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!