Problem 58339. Remove runs of at least n consecutive NaNs
This problem is inspired by Dyuman Joshi's problem 58329. Given a row vector x and a natural number n, remove all runs of at least n consecutive NaNs from x, leaving all shorter runs as well as all non-NaN elements intact.
For instance, given
x = [1 NaN 2 3 NaN NaN 4 5 6 NaN NaN NaN 7 8 9 10 NaN NaN NaN NaN]
the results would be as follows:
>> removenans1n(x, 1)
ans =
1 2 3 4 5 6 7 8 9 10
>> removenans1n(x, 2)
ans =
1 NaN 2 3 4 5 6 7 8 9 10
>> removenans1n(x, 3)
ans =
1 NaN 2 3 NaN NaN 4 5 6 7 8 9 10
>> removenans1n(x, 4)
ans =
1 NaN 2 3 NaN NaN 4 5 6 NaN NaN NaN 7 8 9 10
>> removenans1n(x, 5)
ans =
1 NaN 2 3 NaN NaN 4 5 6 NaN NaN NaN 7 8 9 10 NaN NaN NaN NaN
with no changes in output for even higher n (since x only contains runs of NaNs up to length four).
To make this challenging, provide a vectorized solution: no loops, no arrayfun (in fact, no fun at all, though you're still allowed to have fun), and no recursion. Regular expressions are also outlawed (I don't think that this is a problem that is naturally solved using regular expressions, so I don't feel too bad about doing so).
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers5
Suggested Problems
-
9045 Solvers
-
Project Euler: Problem 6, Natural numbers, squares and sums.
2366 Solvers
-
Return elements unique to either input
787 Solvers
-
Permute diagonal and antidiagonal
476 Solvers
-
How long do each of the stages of the rocket take to burn?
373 Solvers
More from this Author18
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!