where is the problem here? it works on matlab
The function has to be named "complexSort".
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
j = sqrt(-1);
z = [-4 6 3+4*j 1+j 0];
zSorted_correct = [6 3+4*j -4 1+j 0];
assert(isequal(complexSort(z),zSorted_correct))
Error: Undefined function 'complexSort' for input arguments of type 'double'.
|
2 | Fail |
%%
z = 1:10;
zSorted_correct = 10:-1:1;
assert(isequal(complexSort(z),zSorted_correct))
Error: Undefined function 'complexSort' for input arguments of type 'double'.
|
Get the area codes from a list of phone numbers
532 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1491 Solvers
530 Solvers
Create an index-powered vector
352 Solvers
Solving Quadratic Equations (Version 1)
427 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!