An approach to median with SIMD
10/28/2023
Introduction
In a previous post I looked into using Single instruction, multiple data, SIMD to Sum
an array of integer elements.
When working with statistical data, we often need to find the mean/median element of a sample. Calculating the Sum
is useful for finding the mean value, but finding the median element requires a different approach.
The definition of median in case of