Need an extension method to generate a random decimal within a range
Making post here cause I forgot to look at some of the answers given
50 Replies
.NextDouble() * upperBound
...?
Cast to a decimalHow to set min value?
random * (max - min) + min
random being the result of the previous code?
random
being a random double
Random.Shared.NextDouble() * (max - min) + min
What do you mean by "random". Because converting between types is going to mess up precision, which is going to introduce some bias.
A "random decimal" is a sort of odd concept.
I need a random value that is a decimal
I need it to generate a random figure that can represent money
you need to round it.. as in math.round
I gave you already in #chat
Cattywampus
REPL Result: Success
Console Output
Compile: 391.973ms | Execution: 73.928ms | React with ❌ to remove this embed.
I know, I forgot to save it
thats rounding to exact decimal value
@A Certain Scientific Railgun Where does the "has to be an extension method" requirement comes from?
Doesn’t have to be, I’d like it to be
Ok. You want to extend what?
Random
Ok, so you want to use the same seed? Alright. Do you have a requirement that the random has to be "perfect", or just "quite good enough"?
Good enough
It may be used for scientific data but will primarily be used for currency
either you use the above I gave which is quite decent or if you want to get fancy, just use power 10
int
then convert to bytes
then convert back to decimalthis will give double precision
not decimal precision
Which part is precision?
Mango
Good enough
Quoted by
<@163876962710847488> from #Need an extension method to generate a random decimal within a range (click here)
React with ❌ to remove this embed.
The rounding?
ye
Yea I just need something that will give me something like "1.21m"
And it might not be perfectly distributed. Like you might get more or less chances of getting a number between 0.947259863249856 and 0.947259863249857 and you would between 0.4397747587 and 0.4397747588
(ignore the scale difference in my sarcastic message)
thus you must round it 😌
the rounding must truncate the double precission
No. There is nothing in the requirements that talks about rounding. If "good enough" is the requirement, good enough is good enough.
Cattywampus
REPL Result: Success
Console Output
Compile: 442.908ms | Execution: 33.696ms | React with ❌ to remove this embed.
oh lord dont y'all see the difference
like right in front y'all eyes
aight time to sleep... it's 8 .50am now :HmmCouncilRTX3:
Fwiw, the rounding doesn’t have to be correct
Yawnder
REPL Result: Failure
Exception: CompilationErrorException
Compile: 422.067ms | Execution: 0.000ms | React with ❌ to remove this embed.
I just want some random decimals between -300.00 and 300.00
Yawnder
REPL Result: Success
Console Output
Compile: 437.504ms | Execution: 33.612ms | React with ❌ to remove this embed.
If it matters I plan to round to 2 decimal places
But the rounding itself doesn’t need to be accurate
This is to create mock data
i mean, you wont get decimal precission anyway, thus the rounding is iimportant
You could be lazy then...
rnd.Next(-30000M,30000M)/100M
Anyhow, gtg. You already have many ways to skin the cat.incase y'all missing the point here

https://learn.microsoft.com/en-us/dotnet/api/system.math.round?view=net-9.0
time to sleep now 🤤
I need a decimal. Not feline pelts
Also
Is there a format for decimal to format it to currency where negative is
-$1,234.56
and not ($1,234.56)
?
My end users are electrical engineers, not boring accountants like @viceroypenguin | 🦋🐧You have your answer, no?
$close
If you have no further questions, please use /close to mark the forum thread as answered
$close
If you have no further questions, please use /close to mark the forum thread as answered
i posted an answer to this in #chat when you asked it, check your inbox (hope it's there)
ero
REPL Result: Success
Result: string
Compile: 437.786ms | Execution: 36.119ms | React with ❌ to remove this embed.
@A Certain Scientific Railgun
👍