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))
|
Generate N equally spaced intervals between -L and L
442 Solvers
116 Solvers
138 Solvers
136 Solvers
251 Solvers