Forum Discussion
Altera_Forum
Honored Contributor
13 years agoPseudo-random Number Generator
Hi,
I have looking for a Pseudo-random number generator with some maximum linit. I know the LFSR approach but I dont know how to limit the maximum number generated by the LFSR. For example if I want to use an 8-bit LFSR with maximum limit of 200. How to limit the LFSR so that number must not exceed 200. Any link, idea or circuit will be highly appreciated Thanks Ali Umair12 Replies
- Altera_Forum
Honored Contributor
You can't.
If the number is out of range, discard it and request another until you get one in range. - Altera_Forum
Honored Contributor
--- Quote Start --- If the number is out of range, discard it and request another until you get one in range. --- Quote End --- This way an undefinite number of cycles is possibly required before you get a valid result. If you can't allow this, because you need the random number immediately, you must implement a different solution. If you don't bother the indipendence between successive pseudo-random numbers, you can simply feed the LFSR output to a modulo 200 adder: you sum the previous number to the LFSR result, divide by 200 and take the remainder, which is actually a pseudo random number uniformly distributed between 0 and 199. - Altera_Forum
Honored Contributor
Infinite is an exaggeration :-) Especially if the source is an LFSR.
- Altera_Forum
Honored Contributor
--- Quote Start --- Infinite is an exaggeration :-) Especially if the source is an LFSR. --- Quote End --- Infact I said undefinite, not infinite. I mean it could require one cycle (in about 80% of cases), two retries (16%), three (3.2%, right?) and so on. - Altera_Forum
Honored Contributor
In theory, you need to change your lfsr_out to the range of 0 to 1 (1 not included) and then scale it by (limit + 1). In your 8-bit case:
wire [15:0] temp = lfsr_out * 16'd201; wire [7:0] result = temp [15:8]; lfsr_out is the output of your LFSR and result is what you are looking for. - Altera_Forum
Honored Contributor
--- Quote Start --- In theory, you need to change your lfsr_out to the range of 0 to 1 (1 not included) and then scale it by (limit + 1). In your 8-bit case: wire [15:0] temp = lfsr_out * 16'd201; wire [7:0] result = temp [15:8]; lfsr_out is the output of your LFSR and result is what you are looking for. --- Quote End --- This way you'll get a non uniform distribution, namely some values would be much more frequent than others, expecially if LFSR output range is not a lot bigger than the desired range. Extending the LFSR length would help improving the distribution. - Altera_Forum
Honored Contributor
55 values would appear twice as often as the other 201 - regardless of the LFSR length.
- Altera_Forum
Honored Contributor
You are correct. I made the assumption that the implementation was not meant to pass any such tests as chi-squared or others, given the small size of the sampling field. I could be wrong.
- Altera_Forum
Honored Contributor
Yes, it does rather depend on what sort of random numbers you want!
- Altera_Forum
Honored Contributor
--- Quote Start --- Yes, it does rather depend on what sort of random numbers you want! --- Quote End --- one other method is to get your values in software(e.g. matlab) of any range you choose then store them in LUT and run it from there. As such you can choose whatever type of random values are available in the tool.