Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = [1 2 3;4 5 6];
y_correct = [1;4];
assert(isequal(min_per_row(x),y_correct))
y =
1 2 3
|
2 | Fail |
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))
y =
4.2000 -9.8000 3.6000
|
3 | Fail |
x = [pi exp(1) pi/2;3 pi 4];
y_correct = [pi/2;3];
assert(isequal(min_per_row(x),y_correct))
y =
3.0000 2.7183 1.5708
|
Back to basics 4 - Search Path
322 Solvers
2814 Solvers
Calculate the derivative of a polynomial
168 Solvers
2314 Solvers
Append two matrix as shown below example
182 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!