Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [0 1 0; 1 0 2; 4 3 -5];
y_correct = [1 1 2;4 3 -5];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = [0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
712893 1951 11 1 -1.38
712894 1951 11 2 -2.56
712895 1951 11 3 -2.68];
y_correct = [712893 1951 11 1 -1.38
712894 1951 11 2 -2.56
712895 1951 11 3 -2.68];
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = [1 2 3 -13; 0 0 0 0; -5 9 7 6;0 0 0 0];
y_correct = [1 2 3 -13; -5 9 7 6];
assert(isequal(your_fcn_name(x),y_correct))
|
Determine whether a vector is monotonically increasing
11915 Solvers
Project Euler: Problem 9, Pythagorean numbers
282 Solvers
Return elements unique to either input
550 Solvers
615 Solvers
273 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!