Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1,2;3,4];
y_correct = 274;
assert(isequal(matrix_pow(x),y_correct))
|
2 | Pass |
x = [1 7 8 -9];
y_correct = 7123;
assert(isequal(matrix_pow(x),y_correct))
|
3 | Pass |
x = eye(3).*8;
y_correct = 134250504;
assert(isequal(matrix_pow(x),y_correct))
|
1263 Solvers
given 3 sides, find area of this triangle
680 Solvers
485 Solvers
286 Solvers
266 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!