In vector x of length n we define (n+1) position as going back to the first position (so called wrap-around effect). Can you return the value of x at a given position, taking into account the above rule?
Example: x = [1 2 3] -> x(1) yields 1, x(5) should yield 2; and so on.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers52
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15780 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
1990 Solvers
-
Remove the two elements next to NaN value
703 Solvers
-
Create a two dimensional zero matrix
525 Solvers
-
487 Solvers
More from this Author9
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
This problem has been updated to have more than one test case in the test suite.