The aim is to remove the elements before and after NaN occurrences inside a vector.
For example:
x = [6 10 5 8 9 NaN 23 10 7 3 21 43 NaN 4 6 7 8]
The output y will be:
y = [6 10 5 8 10 7 3 21 6 7 8]
If NaNs occur at the beginning or end then first two or last two values are removed.
x=[NaN 1 2 3] yields [2 3]
NaN values will exist in every case. No case is an empty set.
722 Solvers
Find the sum of the elements in the "second" diagonal
880 Solvers
Back to basics 3 - Temp Directory
277 Solvers
Compute a dot product of two vectors x and y
646 Solvers
119 Solvers
Problem Tags