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

11361 Solutions

5802 Solvers

Last Solution submitted on Apr 25, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...

Problem Recent Solvers5802

Suggested Problems

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!