What is the best way to generate a random float in C#?
Update: I want random floating point numbers from float.Minvalue to float.Maxvalue. I am using these numbers in unit testing of some mathematical methods.
|
What is the best way to generate a random float in C#? Update: I want random floating point numbers from float.Minvalue to float.Maxvalue. I am using these numbers in unit testing of some mathematical methods.
| |||||
feedback
|
|
Best approach, no crazed values, distributed with respect to the representable intervals on the floating-point number line (removed "uniform" as with respect to a continuous number line it is decidedly non-uniform):
Another approach which will give you some crazed values (uniform distribution of bit patterns), potentially useful for fuzzing:
Least useful approach:
Floating point number line from: Intel Architecture Software Developer's Manual Volume 1: Basic Architecture. The Y-axis is logarithmic (base-2) because consecutive binary floating point numbers do not differ linearly.
| |||||||||||||||
feedback
|
|
Any reason not to use If you want a different form of "best" you'll need to specify your requirements. Note that EDIT: As suggested in comments, to convert this to a range of
EDIT: Now you've mentioned that this is for unit testing, I'm not sure it's an ideal approach. You should probably test with concrete values instead - making sure you test with samples in each of the relevant categories - infinities, NaNs, denormal numbers, very large numbers, zero, etc. | |||||||||||||
feedback
|
|
I took a slightly different approach than others
The comments explain what I'm doing. Get the next double, convert that number to a value between -1 and 1 and then multiply that with | |||
|
feedback
|