Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
user = MatrixFunc();
assert(isequal(size(user),[5 3]))
ans =
3 0 -3
3 1 1
0 -1 -1
-3 -1 3
1 -1 3
|
2 | Pass |
user = MatrixFunc();
assert(max(max(user))<=3)
ans =
0 -3 2
3 2 3
0 1 -1
2 -2 2
3 2 -1
|
3 | Pass |
user = MatrixFunc();
assert(min(min(user))>=-3)
ans =
-2 1 -2
-3 -1 3
-2 2 1
1 -1 0
2 -2 2
|
4 | Pass |
user = MatrixFunc();
assert(sum(sum(user))==floor(sum(sum(user))))
ans =
-2 3 1
3 -3 -3
0 1 1
3 -1 -2
0 -1 2
|
5 | Pass |
user = MatrixFunc();
assert(~all(user(:)==user(1)))
ans =
2 3 3
-1 -3 1
-1 -1 -1
0 0 -2
-1 1 2
|
381 Solvers
401 Solvers
Find nearest prime number less than input number
268 Solvers
Number of digits in an integer
336 Solvers
07 - Common functions and indexing 4
319 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!