Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y = 1;
assert(isequal(row_to_col(x),y))
|
2 | Pass |
x = [1 2 3];
y = [1;2;3];
assert(isequal(row_to_col(x),y))
|
3 | Pass |
x = [4 5 6 7 8 9];
y = [4;5;6;7;8;9];
assert(isequal(row_to_col(x),y))
|
Swap the first and last columns
12416 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
Check if number exists in vector
4470 Solvers
274 Solvers
259 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!