Xoshiro256StarStarDoubleSequence Method |
Returns an infinite sequence of random numbers greater than or equal to 0.0 and less than 1.0.
Namespace: Altaxo.Calc.RandomAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static IEnumerable<double> DoubleSequence(
int seed
)
Parameters
- seed Int32
- The seed value used to initialize the generator.
Return Value
IEnumerableDoubleAn infinite sequence of random numbers greater than or equal to 0.0 and less than 1.0.
RemarksSupports being called in parallel from multiple threads, but the result must be enumerated from a single thread each.
See Also