C
C#2mo ago
Mango

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
Angius
Angius2mo ago
.NextDouble() * upperBound...? Cast to a decimal
Mango
MangoOP2mo ago
How to set min value?
Angius
Angius2mo ago
random * (max - min) + min
Mango
MangoOP2mo ago
random being the result of the previous code?
Angius
Angius2mo ago
random being a random double Random.Shared.NextDouble() * (max - min) + min
cned
cned2mo ago
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.
Mango
MangoOP2mo ago
I need a random value that is a decimal I need it to generate a random figure that can represent money
Cattywampus
Cattywampus2mo ago
you need to round it.. as in math.round I gave you already in #chat
MODiX
MODiX2mo ago
Cattywampus
REPL Result: Success
double a = Math.Round((new Random().NextDouble() / 100), 3);
Console.WriteLine(a);
double a = Math.Round((new Random().NextDouble() / 100), 3);
Console.WriteLine(a);
Console Output
0.002
0.002
Compile: 391.973ms | Execution: 73.928ms | React with ❌ to remove this embed.
Mango
MangoOP2mo ago
I know, I forgot to save it
Cattywampus
Cattywampus2mo ago
thats rounding to exact decimal value
Yawnder
Yawnder2mo ago
@A Certain Scientific Railgun Where does the "has to be an extension method" requirement comes from?
Mango
MangoOP2mo ago
Doesn’t have to be, I’d like it to be
Yawnder
Yawnder2mo ago
Ok. You want to extend what?
Mango
MangoOP2mo ago
Random
Yawnder
Yawnder2mo ago
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"?
Mango
MangoOP2mo ago
Good enough It may be used for scientific data but will primarily be used for currency
Cattywampus
Cattywampus2mo ago
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 decimal
Yawnder
Yawnder2mo ago
public static decimal MyThing(this Random rnd, decimal lowerBound, decimalUpperBound)
{
// Guard for lower < upper
return (upperBound-lowerBound)*(decimal)rnd.NextDouble()+lowerBound;
}
public static decimal MyThing(this Random rnd, decimal lowerBound, decimalUpperBound)
{
// Guard for lower < upper
return (upperBound-lowerBound)*(decimal)rnd.NextDouble()+lowerBound;
}
Cattywampus
Cattywampus2mo ago
this will give double precision not decimal precision
Mango
MangoOP2mo ago
Which part is precision?
MODiX
MODiX2mo ago
Mango
Good enough
React with ❌ to remove this embed.
Mango
MangoOP2mo ago
The rounding?
Cattywampus
Cattywampus2mo ago
ye
Mango
MangoOP2mo ago
Yea I just need something that will give me something like "1.21m"
Yawnder
Yawnder2mo ago
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)
Cattywampus
Cattywampus2mo ago
thus you must round it 😌 the rounding must truncate the double precission
Yawnder
Yawnder2mo ago
No. There is nothing in the requirements that talks about rounding. If "good enough" is the requirement, good enough is good enough.
MODiX
MODiX2mo ago
Cattywampus
REPL Result: Success
double a = Math.Round((new Random().NextDouble() / 100), 3);
Console.WriteLine(a);
double a = Math.Round((new Random().NextDouble() / 100), 3);
Console.WriteLine(a);
Console Output
0.01
0.01
Compile: 442.908ms | Execution: 33.696ms | React with ❌ to remove this embed.
Cattywampus
Cattywampus2mo ago
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:
Mango
MangoOP2mo ago
Fwiw, the rounding doesn’t have to be correct
MODiX
MODiX2mo ago
Yawnder
REPL Result: Failure
double a = Math.Round((new Random().NextDouble() / (decimal)100), 3);
Console.WriteLine(a);
double a = Math.Round((new Random().NextDouble() / (decimal)100), 3);
Console.WriteLine(a);
Exception: CompilationErrorException
- Operator '/' cannot be applied to operands of type 'double' and 'decimal'
- Operator '/' cannot be applied to operands of type 'double' and 'decimal'
Compile: 422.067ms | Execution: 0.000ms | React with ❌ to remove this embed.
Mango
MangoOP2mo ago
I just want some random decimals between -300.00 and 300.00
MODiX
MODiX2mo ago
Yawnder
REPL Result: Success
double a = Math.Round((new Random().NextDouble() / (double)100), 3);
Console.WriteLine(a);
double a = Math.Round((new Random().NextDouble() / (double)100), 3);
Console.WriteLine(a);
Console Output
0.008
0.008
Compile: 437.504ms | Execution: 33.612ms | React with ❌ to remove this embed.
Mango
MangoOP2mo ago
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
Cattywampus
Cattywampus2mo ago
i mean, you wont get decimal precission anyway, thus the rounding is iimportant
Yawnder
Yawnder2mo ago
You could be lazy then... rnd.Next(-30000M,30000M)/100M Anyhow, gtg. You already have many ways to skin the cat.
Cattywampus
Cattywampus2mo ago
incase y'all missing the point here
No description
Mango
MangoOP2mo ago
I need a decimal. Not feline pelts
Mango
MangoOP2mo ago
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 | 🦋🐧
ero
ero2mo ago
You have your answer, no? $close
MODiX
MODiX2mo ago
If you have no further questions, please use /close to mark the forum thread as answered
Mango
MangoOP2mo ago
$close
MODiX
MODiX2mo ago
If you have no further questions, please use /close to mark the forum thread as answered
ero
ero2mo ago
i posted an answer to this in #chat when you asked it, check your inbox (hope it's there)
MODiX
MODiX2mo ago
ero
REPL Result: Success
static decimal NextDecimal(this Random random, decimal lowerInclusive, decimal upperExclusive)
{
return (decimal)Random.Shared.NextDouble() * (upperExclusive - lowerInclusive) + lowerInclusive;
}

var culture = (CultureInfo)CultureInfo.GetCultureInfo("en-US").Clone();
culture.NumberFormat.CurrencyNegativePattern = 1;

var value = Random.Shared.NextDecimal(-300, 0);
value.ToString("C", culture)
static decimal NextDecimal(this Random random, decimal lowerInclusive, decimal upperExclusive)
{
return (decimal)Random.Shared.NextDouble() * (upperExclusive - lowerInclusive) + lowerInclusive;
}

var culture = (CultureInfo)CultureInfo.GetCultureInfo("en-US").Clone();
culture.NumberFormat.CurrencyNegativePattern = 1;

var value = Random.Shared.NextDecimal(-300, 0);
value.ToString("C", culture)
Result: string
-$249.96
-$249.96
Compile: 437.786ms | Execution: 36.119ms | React with ❌ to remove this embed.
ero
ero2mo ago
@A Certain Scientific Railgun
Cattywampus
Cattywampus2mo ago
👍

Did you find this page helpful?