Nice Solution
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 the alphabetic word product
1997 Solvers
Set some matrix elements to zero
228 Solvers
07 - Common functions and indexing 2
255 Solvers
Returning a "greater than" vector
149 Solvers
Flip the vector from right to left
740 Solvers