Suppose I have an uniform grid $A = [ a_1, a_2, a_3, \dots, a_n ]$ of $n$ points on the interval $[-c, +c]$.
As an example, consider $c=10$ and $n=10^4$ so that $$A = [-10, -9.9979998, -9.9959996, \dots, 9.9959996, 9.9979998, 10]$$
How should I randomly pick $m$ indexes $k_1, \dots k_m$ so that the resulting distribution of the sampled array $\tilde{A} = [a_{k_1}, a_{k_2}, \dots, a_{k_m} ]$ is approximately gaussian ?
I assume I'd need to compute the mean $\mu_A$ and std $\sigma_A$ of my original array $A$, and sample $68\%$ of my points in the interval $\mu_A \pm \sigma_A$, then $95\%$ in the interval $\mu_A \pm 2\sigma_A$... This is however not enough to approximate a gaussian.
Any ideas ?