Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1,2;3,4];
y_correct = 274;
assert(isequal(matrix_pow(x),y_correct))
ans =
274
|
2 | Pass |
x = [1 7 8 -9];
y_correct = 7123;
assert(isequal(matrix_pow(x),y_correct))
ans =
7123
|
3 | Pass |
x = eye(3).*8;
y_correct = 134250504;
assert(isequal(matrix_pow(x),y_correct))
ans =
134250504
|
Return the largest number that is adjacent to a zero
3751 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
464 Solvers
511 Solvers
Percentage of zeros in a matrix of only 1s and 0s
44 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!