Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [NaN 1 2 NaN 17 3 -4 NaN];
y_correct = [0 1 2 2 17 3 -4 -4];
assert(isequal(replace_nans(x),y_correct))
ans =
2 5 9
|
2 | Pass |
x = [NaN 1 2 NaN NaN 17 3 -4 NaN];
y_correct = [ 0 1 2 2 2 17 3 -4 -4];
assert(isequal(replace_nans(x),y_correct))
ans =
2 5 6 10
ans =
6
|
3 | Pass |
x = [NaN NaN NaN NaN];
y_correct = [ 0 0 0 0];
assert(isequal(replace_nans(x),y_correct))
ans =
2 3 4 5
ans =
3 4 5
ans =
4 5
ans =
5
|
4 | Pass |
x = [1:10 NaN];
y_correct = [ 1:10 10];
assert(isequal(replace_nans(x),y_correct))
ans =
12
|
253 Solvers
Find a subset that divides the vector into equal halves
332 Solvers
Pernicious Anniversary Problem
735 Solvers
2770 Solvers
1172 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!