Problem 42480. Go back n times
You will be given a column vector (such as x = [1; 2; 3; 4; 5; 6]). If (n=3) you will return following;
[ 1 NaN NaN NaN 2 1 NaN NaN 3 2 1 NaN 4 3 2 1 5 4 3 2 6 5 4 3 ]
Solution Stats
Problem Comments
-
4 Comments
Show
1 older comment
Mehmet OZC
on 1 Aug 2015
Now, I have changed the assert statement
Massimo Zanetti
on 26 Oct 2016
Example is wrong. Input vector x must be
x = [1; 2; 3; 4; 5; 6]
not
x = [1; 2; 3; 4; 5; 6; 7; 8]
Aditya Jain
on 26 Oct 2016
Thanks Massimo. Changed it
Solution Comments
Show commentsProblem Recent Solvers44
Suggested Problems
-
17958 Solvers
-
353 Solvers
-
Create an index-powered vector
825 Solvers
-
496 Solvers
-
Check that number is whole number
4648 Solvers
More from this Author92
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!