I am trying to code a random number generation function in embedded C where I can't include the math.h file. Thats why I'm not able to use the seed srand function.
Is there any other way to seed it other than time?
|
feedback
|
|
Consider using the Mersenne Twister, sources are e.g. here -- much higher quality than traditional linear congruential generators, superbly long period, deeply studied in, and blessed by, plenty of recent academic literature. | |||||||
feedback
|
| |||||
feedback
|
|
Consider having a looksee through this lecture, might give you some ideas (and code). The pdf goes through a few different options, and even gives a bit of code. | |||
|
feedback
|
Of course, you can seed it with anything you want. It depends on your platform what is available. | |||||||||
feedback
|
<math.h>doesn't declaresrand(); that's in<stdlib.h>, so you can still use 'srand()' (since you didn't say you can't include<stdlib.h>). – Jonathan Leffler Mar 7 '10 at 7:25