Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = zeros(0,1);
assert(isequal(middleAsColumn(x),y_correct))
|
2 | Pass |
x = rand(1,4);
y_correct = x(2:3)';
assert(isequal(middleAsColumn(x),y_correct))
|
3 | Pass |
x = rand(4,1);
y_correct = x(2:3);
assert(isequal(middleAsColumn(x),y_correct))
|
4 | Pass |
x = rand(2,2);
y_correct = x(2:3)';
assert(isequal(middleAsColumn(x),y_correct))
|
5 | Pass |
x = {1 2 3 4};
y_correct = x(2:3)';
assert(isequal(middleAsColumn(x),y_correct))
|
6 | Pass |
x = struct('a',{1 2 3 4},'b',{3 4 5 6});
y_correct = x(2:3)';
assert(isequal(middleAsColumn(x),y_correct))
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13048 Solvers
The Hitchhiker's Guide to MATLAB
2874 Solvers
306 Solvers
Back to basics 6 - Column Vector
908 Solvers
450 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!