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;
b = 2;
c = 1;
y_correct = -1;
assert(isequal(solution(a,b,c),y_correct))
ans =
-1
|
2 | Pass |
a = 1;
b = 0;
c = 1;
y_correct = [-i i];
assert(isequal(solution(a,b,c),y_correct))
ans =
0.0000 - 1.0000i 0.0000 + 1.0000i
|
3 | Pass |
a = 1;
b = -2;
c = -3;
y_correct = [3 -1];
assert(isequal(solution(a,b,c),y_correct))
ans =
3 -1
|
798 Solvers
276 Solvers
136 Solvers
Find the largest value in the 3D matrix
899 Solvers
111 Solvers