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 =
0.0000 - 1.0000i 0.0000 + 1.0000i
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 =
0.0000 - 1.0000i 0.0000 + 1.0000i
ans =
3 -1
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Back to basics 8 - Matrix Diagonals
782 Solvers
208 Solvers
573 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!