Forum Discussion
Altera_Forum
Honored Contributor
15 years agoSimple RNG for the DE2 board
I need a process to produce a seemingly random integer, is it possible to use the rand function and if so, what library do i need to use?
Thanks for any help2 Replies
- Altera_Forum
Honored Contributor
What kind of statistics? Uniform distribution, or normal distribution? A uniform distribution is fairly easy to generate using a linear feedback shift register. A normal (Gaussian) distribution can be generated by summing multiple LFSRs, or LFSR samples, or by filtering an LFSR. It depends on the rate at which you want to generate the random data.
Alternatively, you can always write a block of data to RAM, and then process that data. This method is nice for testing identical data in MATLAB, Modelsim, and in hardware. Cheers, Dave - Altera_Forum
Honored Contributor
Fixed it by using a 8 bit counter at 50 MHz and taking out the bit code when my state machine resets