Problem 58329. Continuous NaNs - I

Remove any continuous NaNs that appear in the array -
%Example 1
input = [1 NaN 2 NaN NaN 3 NaN NaN NaN]
output = [1 NaN 2 3]
%Example 2
input = [NaN NaN NaN 2 NaN 3 NaN 5 NaN 7 NaN NaN]
output = [2 NaN 3 NaN 5 NaN 7]
%Example 3
input = [-1 NaN NaN NaN NaN 0 NaN NaN NaN NaN NaN NaN 1]
output = [-1 0 1]
However, there is a restriction on the problem i.e. only vectorized solutions will be accepted. Check the test suite for banned functions.

Solution Stats

83.33% Correct | 16.67% Incorrect
Last Solution submitted on Nov 25, 2023

Solution Comments

Show comments

Problem Recent Solvers8

Suggested Problems

More from this Author31

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!