This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
A = [1 2 3;4 5 6;7 8 9];
i=1;
j=1;
y_correct = 6;
assert(isequal(cofactor(A, i, j),y_correct))
|
2 | Pass |
%%
A = [1 2 3;4 5 6;7 8 9];
i=2;
j=1;
y_correct = 6;
assert(isequal(cofactor(A, i, j),y_correct))
|
2261 Solvers
190 Solvers
316 Solvers
Create an n-by-n null matrix and fill with ones certain positions
268 Solvers
Number of digits in an integer
336 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!