Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 1;1 1];
y_correct = [1 1;1 1];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = [1 2 3;4 5 6];
y_correct = [1 3;4 6];
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = [1 2 3 4;1 1 1 1;0 0 0 0;5 6 7 8];
y_correct = [1 4;5 8];
assert(isequal(your_fcn_name(x),y_correct))
|
651 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
Create a Multiplication table matrix...
281 Solvers
365 Solvers
464 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!