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 Solvers5819
Suggested Problems
-
What is the next step in Conway's Life?
680 Solvers
-
666 Solvers
-
Back to basics 9 - Indexed References
463 Solvers
-
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
603 Solvers
-
Flip the vector from right to left
11428 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!