Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x=[3-6i -1-4i -1+4i 3+6i];
y_correct = [-1 - 4i -1 + 4i 3 - 6i 3 + 6i];
assert(isequal(your_fcn_name(x),y_correct))
y =
-1.0000 - 4.0000i -1.0000 + 4.0000i 3.0000 - 6.0000i 3.0000 + 6.0000i
|
2 | Pass |
x=[2-i 2+i 3+4i 3-4i];
y_correct = [2-i 2+i 3-4i 3+4i];
assert(isequal(your_fcn_name(x),y_correct))
y =
2.0000 - 1.0000i 2.0000 + 1.0000i 3.0000 - 4.0000i 3.0000 + 4.0000i
|
7273 Solvers
Sort a list of complex numbers based on far they are from the origin.
3793 Solvers
119 Solvers
Sum the elements in either diagonal of a square matrix
145 Solvers
402 Solvers