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))
|
Getting the absolute index from a matrix
211 Solvers
Generate a string like abbcccddddeeeee
234 Solvers
Create matrix of replicated elements
321 Solvers
413 Solvers
509 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!