Convert an entire list of numbers to their absolute values at once.
How It Works
How Absolute Value of a List of Numbers Works
Each number in your list is converted to its distance from zero — negative numbers simply drop their sign, and positive numbers (and zero) stay exactly as they are.
FAQ
Frequently Asked Questions
Why would I need to do this for a whole list at once?
It saves manually flipping signs one at a time when cleaning up a dataset — for example, converting a list of temperature deviations or financial gains/losses into pure magnitudes for further analysis.
Does the order of the list matter?
No, each value is converted independently, so the output list matches your input list one-for-one in the same order.