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 Solvers5809
Suggested Problems
-
Return a list sorted by number of occurrences
2895 Solvers
-
1362 Solvers
-
Remove the polynomials that have positive real elements of their roots.
1743 Solvers
-
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
2108 Solvers
-
373 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!