Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = rand(2,3,1,4);
y_correct = 3;
assert(isequal(ndims(remove_dims(x)),y_correct))
|
2 | Pass |
%%
x = rand(2,3,4);
y_correct = 3;
assert(isequal(ndims(remove_dims(x)),y_correct))
|
3 | Pass |
%%
x = rand(1,2,3,4,5);
y_correct = 4;
assert(isequal(ndims(remove_dims(x)),y_correct))
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13048 Solvers
732 Solvers
First non-zero element in each column
593 Solvers
274 Solvers
519 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!