Sort a list of complex numbers based on far they are from the origin. - MATLAB Cody - MATLAB Central

Problem 30. Sort a list of complex numbers based on far they are from the origin.

Difficulty:Rate

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

57.33% Correct | 42.67% Incorrect
Last Solution submitted on May 16, 2025

Problem Comments

Solution Comments

Show comments
PIVlab surpasses 100K all-time File Exchange downloads
During the past twelve months, PIVlab, a MATLAB Community Toolbox for particle...
4
8

Problem Recent Solvers5711

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!