I use random VHDL numbers from IEEE.math_real, but how good are these generated numbers?
.... let's say compared to rand(...)from C.
Were there any statistical tests?
Here is a histogram of the Gaussian distribution. Parameters:
- Random source: 2 uniform distributed REAL values generated
math_real.Uniform(...) - Convert Box-Muller
- calculated using REAL
- Output signal: 0..4095 INTEGER
- 102,400 iterations
Classic view of the histogram:

Like a point cloud:

Here is a uniform distribution histogram. Parameters:
- Random source: uniform distributed REAL values generated using
math_real.Uniform(...) - calculated using REAL
- Output signal: 0..4095 INTEGER
- 102,400 iterations
Classic view of the histogram:

Like a point cloud:

Gnuplot fit results for f(x)=m*x+b:
m = -0.0000343906
b = 25.0704
In my opinion, both histograms have a high jitter.