Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear first.
So if z is
z = [-4 6 3+4i 1+i 0]
then the output zSorted would be
zSorted = [6 3+4i -4 1+i 0]
Solution Stats
Problem Comments
5 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers5810
Suggested Problems
-
Sum all integers from 1 to 2^n
17882 Solvers
-
Find the sum of the elements in the "second" diagonal
1204 Solvers
-
Calculate the area of a triangle between three points
3523 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
400 Solvers
-
356 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
It is useful to mention sort in 'descending' order of distance from origin.
hey
great problem!!!!
nice
nice problem!