Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3;4 5 6];
y_correct = [1;4];
assert(isequal(min_per_row(x),y_correct))
|
2 | Pass |
x = [7.2 -2.5 5.1;4.2 -9.8 3.6];
y_correct = [-2.5;-9.8];
assert(isequal(min_per_row(x),y_correct))
|
3 | Pass |
x = [pi exp(1) pi/2;3 pi 4];
y_correct = [pi/2;3];
assert(isequal(min_per_row(x),y_correct))
|
1763 Solvers
Implement simple rotation cypher
943 Solvers
203 Solvers
251 Solvers
Determine if input is divisible by three.
162 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!