Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
24
Task/Random-numbers/D/random-numbers-1.d
Normal file
24
Task/Random-numbers/D/random-numbers-1.d
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import std.stdio, std.random, std.math;
|
||||
|
||||
struct NormalRandom {
|
||||
double mean, stdDev;
|
||||
|
||||
// Necessary because it also defines an opCall.
|
||||
this(in double mean_, in double stdDev_) pure nothrow {
|
||||
this.mean = mean_;
|
||||
this.stdDev = stdDev_;
|
||||
}
|
||||
|
||||
double opCall() const /*nothrow*/ {
|
||||
immutable r1 = uniform01, r2 = uniform01; // Not nothrow.
|
||||
return mean + stdDev * sqrt(-2 * r1.log) * cos(2 * PI * r2);
|
||||
}
|
||||
}
|
||||
|
||||
void main() {
|
||||
double[1000] array;
|
||||
auto nRnd = NormalRandom(1.0, 0.5);
|
||||
foreach (ref x; array)
|
||||
//x = nRnd;
|
||||
x = nRnd();
|
||||
}
|
||||
10
Task/Random-numbers/D/random-numbers-2.d
Normal file
10
Task/Random-numbers/D/random-numbers-2.d
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import tango.math.random.Random;
|
||||
|
||||
void main() {
|
||||
double[1000] list;
|
||||
auto r = new Random();
|
||||
foreach (ref l; list) {
|
||||
r.normalSource!(double)()(l);
|
||||
l = 1.0 + 0.5 * l;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue