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))
|
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))
|
613 Solvers
1735 Solvers
Get the length of a given vector
1360 Solvers
find the roots of a quadratic equation
124 Solvers
Sum of odd numbers in a matrix
232 Solvers