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))
|
Select every other element of a vector
16227 Solvers
5365 Solvers
Remove all the words that end with "ain"
1027 Solvers
1879 Solvers
Find Index of maximum Value and maximum Value of a vector
123 Solvers