Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = num2cell(1:10);
to_remove = 3;
y_correct = {1 2 4 5 6 7 8 9 10};
assert(isequal(remove_from_cell_array(x,to_remove),y_correct))
|
2 | Pass |
x = num2cell(1:5)';
to_remove = 1:2:5;
y_correct = {2 4}';
assert(isequal(remove_from_cell_array(x,to_remove),y_correct))
|
The Hitchhiker's Guide to MATLAB
2874 Solvers
434 Solvers
Celsius to Fahrenheit converter
389 Solvers
436 Solvers
Back to basics - mean of corner elements of a matrix
297 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!