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
Solution Comments
Show comments
Loading...
Problem Recent Solvers46
Suggested Problems
-
662 Solvers
-
Split a string into chunks of specified length
2057 Solvers
-
645 Solvers
-
294 Solvers
-
Append two matrix as shown below example
237 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!
I imagine you are going to need to use "isequalwithequalnans" in your testsuite instead of "isequal" for this problem
Now, I have changed the assert statement
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]
Thanks Massimo. Changed it