Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = rand(4);
y_correct = [zeros(1,size(x,2));x];
assert(isequal(addrow(x),y_correct))
|
2 | Pass |
x = [];
y_correct = zeros(1,0);
assert(isequal(addrow(x),y_correct))
|
3 | Pass |
x = rand(8,1);
y_correct = [zeros(1,size(x,2));x];
assert(isequal(addrow(x),y_correct))
|
4 | Pass |
x = zeros(0,1);
y_correct = 0;
assert(isequal(addrow(x),y_correct))
|
Find common elements in matrix rows
1231 Solvers
Getting the absolute index from a matrix
211 Solvers
Return the first and last character of a string
3446 Solvers
413 Solvers
343 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!