【原创】开源Math.NET基础数学类库使用(13)C#实现其他随机数生成器

您所在的位置:网站首页 math算法 【原创】开源Math.NET基础数学类库使用(13)C#实现其他随机数生成器

【原创】开源Math.NET基础数学类库使用(13)C#实现其他随机数生成器

2024-07-11 18:07:19| 来源: 网络整理| 查看: 265

  真正意义上的随机数(或者随机事件)在某次产生过程中是按照实验过程中表现的分布概率随机产生的,其结果是不可预测的,是不可见的。而计算机中的随机函数是按照一定算法模拟产生的,其结果是确定的,是可见的。我们可以这样认为这个可预见的结果其出现的概率是100%。所以用计算机随机函数所产生的“随机数”并不随机,是伪随机数。伪随机数的作用在开发中的使用非常常见,因此.NET在System命名空间,提供了一个简单的Random随机数生成类型。但这个类型并不能满足所有的需求,本节开始就将陆续介绍Math.NET中有关随机数的扩展以及其他伪随机生成算法编写的随机数生成器。

  今天要介绍的是Math.NET中扩展的其他随机数生成算法。

  如果本文资源或者显示有问题,请参考 本文原文地址:http://www.cnblogs.com/asxinyu/p/4301555.html

http://zh.wikipedia.org/wiki/随机数

  随机数是专门的随机试验的结果。  在统计学的不同技术中需要使用随机数,比如在从统计总体中抽取有代表性的样本的时候,或者在将实验动物分配到不同的试验组的过程中,或者在进行蒙特卡罗模拟法计算的时候等等。产生随机数有多种不同的方法。这些方法被称为随机数生成器。随机数最重要的特性是它在产生时后面的那个数与前面的那个数毫无关系。真正的随机数是使用物理现象产生的:比如掷钱币、骰子、转轮、使用电子元件的噪音、核裂变等等。这样的随机数生成器叫做物理性随机数生成器,它们的缺点是技术要求比较高。在实际应用中往往使用伪随机数就足够了。这些数列是“似乎”随机的数,实际上它们是通过一个固定的、可以重复的计算方法产生的。它们不真正地随机,因为它们实际上是可以计算出来的,但是它们具有类似于随机数的统计特征。这样的生成器叫做伪随机数生成器。在真正关键性的应用中,比如在密码学中,人们一般使用真正的随机数。

1.Math.NET的其他随机数生成算法

  Math.NET在MathNet.Numerics.Random命名空间下包括了若干个其他随机数生成算法,基本介绍如下:

1.Mcg31m1类 与 Mcg59 类,都属于 矩阵同余发生器,矩阵同余发生器是乘同余线性发生器的一个推广;2者的参数有些差别;

3.MersenneTwister,Mersenne Twister算法译为马特赛特旋转演算法,是伪随机数发生器之一,其主要作用是生成伪随机数。此算法是Makoto Matsumoto (松本)和Takuji Nishimura (西村)于1997年开发的,基于有限二进制字段上的矩阵线性再生。可以快速产生高质量的伪随机数,修正了古老随机数产生算法的很多缺陷。 Mersenne Twister这个名字来自周期长度通常取Mersenne质数这样一个事实。常见的有两个变种Mersenne Twister MT19937和Mersenne Twister MT19937-64。Math.NET实现的版本是前者(Mersenne Twister MT19937)。介绍

4.Mrg32k3a,又叫 素数模乘同余法,素数模乘同余发生器是提出的一个统计性质较好和周期较大的发生器,目前是使用最广的一种均匀随机数发生器下面给出两组经检验统计性质是良好的素数模乘同余发生器;

5.Palf,是一个并行加法滞后的斐波那契伪随机数字生成器。

6.WH1982与WH2006类,是乘线性同余法,也叫积式发生器,Math.NET实现的2个版本方便是1982和2006,代表作者发布该算法论文的2个时间,可以参考作者的2篇论文:

   1.Wichmann, B. A. ; Hill, I. D. (1982), "Algorithm AS 183:An efficient and portable pseudo-random number generator". Applied Statistics 31 (1982) 188-190

  2. Wichmann, B. A. ; Hill, I. D. (2006), "Generating good pseudo-random numbers".Computational Statistics ; Data Analysis 51:3 (2006) 1614-1622

8.Xorshift类,实现的是George Marsaglia,在论文“Xorshift RNGs”提出的一个算法,原理可以参考这篇论文:http://www.jstatsoft.org/v08/i14/paper;

2.Math.NET扩展随机数生成算法的实现

  上面已经已经对Math.NET扩展的几个随机数生成算法进行了介绍,对于一般人来说,直接用就可以了,但对于特殊的人来说,可能要用到其中一种,可以直接使用C#进行调用即可,当然为了节省大家的时间,这里对Math.NET的实现做一个简单的介绍,这样大家可以更加快速的扩展自己的算法,同时也可以了解实现的原理,对Math.NET有一个更加深入的了解。

   Math.NET对随机数的扩展也是借用了System.Random类,在它的基础上实现了一个随机数发生器的基类:RandomSource,所有的扩展算法都实现该类,这样使用RandomSource就非常方便。RandomSource的结构很简单,对System.Random进行了简单的封装,增加了几个直接生成其他类型随机数的方法,并都可以在继承中使用。其源码如下:  

1 public abstract class RandomSource : System.Random 2 { 3 readonly bool _threadSafe; 4 readonly object _lock = new object(); 5 6 /// 7 /// Initializes a new instance of the class using 8 /// the value of to set whether 9 /// the instance is thread safe or not. 10 /// 11 protected RandomSource() : base(RandomSeed.Robust()) 12 { 13 _threadSafe = Control.ThreadSafeRandomNumberGenerators; 14 } 15 16 /// 17 /// Initializes a new instance of the class. 18 /// 19 /// if set to true , the class is thread safe. 20 /// Thread safe instances are two and half times slower than non-thread 21 /// safe classes. 22 protected RandomSource(bool threadSafe) : base(RandomSeed.Robust()) 23 { 24 _threadSafe = threadSafe; 25 } 26 27 /// 28 /// Fills an array with uniform random numbers greater than or equal to 0.0 and less than 1.0. 29 /// 30 /// The array to fill with random values. 31 public void NextDoubles(double[] values) 32 { 33 if (_threadSafe) 34 { 35 lock (_lock) 36 { 37 for (var i = 0; i < values.Length; i++) 38 { 39 values[i] = DoSample(); 40 } 41 } 42 } 43 else 44 { 45 for (var i = 0; i < values.Length; i++) 46 { 47 values[i] = DoSample(); 48 } 49 } 50 } 51 52 /// 53 /// Returns an infinite sequence of uniform random numbers greater than or equal to 0.0 and less than 1.0. 54 /// 55 public IEnumerable NextDoubleSequence() 56 { 57 for (int i = 0; i < 64; i++) 58 { 59 yield return NextDouble(); 60 } 61 62 var buffer = new double[64]; 63 while (true) 64 { 65 NextDoubles(buffer); 66 for (int i = 0; i < buffer.Length; i++) 67 { 68 yield return buffer[i]; 69 } 70 } 71 } 72 73 /// 74 /// Returns a nonnegative random number. 75 /// 76 /// 77 /// A 32-bit signed integer greater than or equal to zero and less than . 78 /// 79 public override sealed int Next() 80 { 81 if (_threadSafe) 82 { 83 lock (_lock) 84 { 85 return (int)(DoSample()*int.MaxValue); 86 } 87 } 88 89 return (int)(DoSample()*int.MaxValue); 90 } 91 92 /// 93 /// Returns a random number less then a specified maximum. 94 /// 95 /// The exclusive upper bound of the random number returned. 96 /// A 32-bit signed integer less than . 97 /// is negative. 98 public override sealed int Next(int maxValue) 99 { 100 if (maxValue maxValue) 128 { 129 throw new ArgumentException(Resources.ArgumentMinValueGreaterThanMaxValue); 130 } 131 132 if (_threadSafe) 133 { 134 lock (_lock) 135 { 136 return (int)(DoSample()*(maxValue - minValue)) + minValue; 137 } 138 } 139 140 return (int)(DoSample()*(maxValue - minValue)) + minValue; 141 } 142 143 /// 144 /// Fills an array with random numbers within a specified range. 145 /// 146 /// The array to fill with random values. 147 /// The inclusive lower bound of the random number returned. 148 /// The exclusive upper bound of the random number returned. must be greater than or equal to . 149 public void NextInt32s(int[] values, int minValue, int maxValue) 150 { 151 if (_threadSafe) 152 { 153 lock (_lock) 154 { 155 for (var i = 0; i < values.Length; i++) 156 { 157 values[i] = (int)(DoSample()*(maxValue - minValue)) + minValue; 158 } 159 } 160 } 161 else 162 { 163 for (var i = 0; i < values.Length; i++) 164 { 165 values[i] = (int)(DoSample()*(maxValue - minValue)) + minValue; 166 } 167 } 168 } 169 170 /// 171 /// Returns an infinite sequence of random numbers within a specified range. 172 /// 173 /// The inclusive lower bound of the random number returned. 174 /// The exclusive upper bound of the random number returned. must be greater than or equal to . 175 public IEnumerable NextInt32Sequence(int minValue, int maxValue) 176 { 177 for (int i = 0; i < 64; i++) 178 { 179 yield return Next(minValue, maxValue); 180 } 181 182 var buffer = new int[64]; 183 while (true) 184 { 185 NextInt32s(buffer, minValue, maxValue); 186 for (int i = 0; i < buffer.Length; i++) 187 { 188 yield return buffer[i]; 189 } 190 } 191 } 192 193 /// 194 /// Fills the elements of a specified array of bytes with random numbers. 195 /// 196 /// An array of bytes to contain random numbers. 197 /// is null. 198 public override void NextBytes(byte[] buffer) 199 { 200 if (buffer == null) 201 { 202 throw new ArgumentNullException("buffer"); 203 } 204 205 if (_threadSafe) 206 { 207 lock (_lock) 208 { 209 for (var i = 0; i < buffer.Length; i++) 210 { 211 buffer[i] = (byte)(((int)(DoSample()*int.MaxValue))%256); 212 } 213 } 214 215 return; 216 } 217 218 for (var i = 0; i < buffer.Length; i++) 219 { 220 buffer[i] = (byte)(((int)(DoSample()*int.MaxValue))%256); 221 } 222 } 223 224 /// 225 /// Returns a random number between 0.0 and 1.0. 226 /// 227 /// A double-precision floating point number greater than or equal to 0.0, and less than 1.0. 228 protected override sealed double Sample() 229 { 230 if (_threadSafe) 231 { 232 lock (_lock) 233 { 234 return DoSample(); 235 } 236 } 237 238 return DoSample(); 239 } 240 241 /// 242 /// Returns a random number between 0.0 and 1.0. 243 /// 244 /// 245 /// A double-precision floating point number greater than or equal to 0.0, and less than 1.0. 246 /// 247 protected abstract double DoSample(); 248 } View Code

  在扩展随机数生成算法的时候,直接继承该类即可,看一下Mcg59的实现源码:

1 public class Mcg59 : RandomSource 2 { 3 const ulong Modulus = 576460752303423488; 4 const ulong Multiplier = 302875106592253; 5 const double Reciprocal = 1.0/Modulus; 6 ulong _xn; 7 8 /// 9 /// Initializes a new instance of the class using 10 /// a seed based on time and unique GUIDs. 11 /// 12 public Mcg59() : this(RandomSeed.Robust()) 13 { 14 } 15 16 /// 17 /// Initializes a new instance of the class using 18 /// a seed based on time and unique GUIDs. 19 /// 20 /// if set to true , the class is thread safe. 21 public Mcg59(bool threadSafe) : this(RandomSeed.Robust(), threadSafe) 22 { 23 } 24 25 /// 26 /// Initializes a new instance of the class. 27 /// 28 /// The seed value. 29 /// If the seed value is zero, it is set to one. Uses the 30 /// value of to 31 /// set whether the instance is thread safe. 32 public Mcg59(int seed) 33 { 34 if (seed == 0) 35 { 36 seed = 1; 37 } 38 39 _xn = (uint)seed%Modulus; 40 } 41 42 /// 43 /// Initializes a new instance of the class. 44 /// 45 /// The seed value. 46 /// The seed is set to 1, if the zero is used as the seed. 47 /// if set to true , the class is thread safe. 48 public Mcg59(int seed, bool threadSafe) : base(threadSafe) 49 { 50 if (seed == 0) 51 { 52 seed = 1; 53 } 54 55 _xn = (uint)seed%Modulus; 56 } 57 58 /// 59 /// Returns a random number between 0.0 and 1.0. 60 /// 61 /// 62 /// A double-precision floating point number greater than or equal to 0.0, and less than 1.0. 63 /// 64 protected override sealed double DoSample() 65 { 66 double ret = _xn*Reciprocal; 67 _xn = (_xn*Multiplier)%Modulus; 68 return ret; 69 } 70 71 /// 72 /// Fills an array with random numbers greater than or equal to 0.0 and less than 1.0. 73 /// 74 /// Supports being called in parallel from multiple threads. 75 public static void Doubles(double[] values, int seed) 76 { 77 if (seed == 0) 78 { 79 seed = 1; 80 } 81 82 ulong xn = (uint)seed%Modulus; 83 84 for (int i = 0; i < values.Length; i++) 85 { 86 values[i] = xn*Reciprocal; 87 xn = (xn*Multiplier)%Modulus; 88 } 89 } 90 91 /// 92 /// Returns an array of random numbers greater than or equal to 0.0 and less than 1.0. 93 /// 94 /// Supports being called in parallel from multiple threads. 95 [TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] 96 public static double[] Doubles(int length, int seed) 97 { 98 var data = new double[length]; 99 Doubles(data, seed); 100 return data; 101 } 102 103 /// 104 /// Returns an infinite sequence of random numbers greater than or equal to 0.0 and less than 1.0. 105 /// 106 /// Supports being called in parallel from multiple threads, but the result must be enumerated from a single thread each. 107 public static IEnumerable DoubleSequence(int seed) 108 { 109 if (seed == 0) 110 { 111 seed = 1; 112 } 113 114 ulong xn = (uint)seed%Modulus; 115 116 while (true) 117 { 118 yield return xn*Reciprocal; 119 xn = (xn*Multiplier)%Modulus; 120 } 121 } 122 } View Code

  随机数的使用大家都很熟练,和Random类差不多,上述扩展的算法中,也包括了很多 静态方法,可以直接使用。这里不再举例说明。

3.资源

  源码下载:http://www.cnblogs.com/asxinyu/p/4264638.html

  如果本文资源或者显示有问题,请参考 本文原文地址:http://www.cnblogs.com/asxinyu/p/4301555.html 



【本文地址】

公司简介

联系我们

今日新闻


点击排行

实验室常用的仪器、试剂和
说到实验室常用到的东西,主要就分为仪器、试剂和耗
不用再找了,全球10大实验
01、赛默飞世尔科技(热电)Thermo Fisher Scientif
三代水柜的量产巅峰T-72坦
作者:寞寒最近,西边闹腾挺大,本来小寞以为忙完这
通风柜跟实验室通风系统有
说到通风柜跟实验室通风,不少人都纠结二者到底是不
集消毒杀菌、烘干收纳为一
厨房是家里细菌较多的地方,潮湿的环境、没有完全密
实验室设备之全钢实验台如
全钢实验台是实验室家具中较为重要的家具之一,很多

推荐新闻


图片新闻

实验室药品柜的特性有哪些
实验室药品柜是实验室家具的重要组成部分之一,主要
小学科学实验中有哪些教学
计算机 计算器 一般 打孔器 打气筒 仪器车 显微镜
实验室各种仪器原理动图讲
1.紫外分光光谱UV分析原理:吸收紫外光能量,引起分
高中化学常见仪器及实验装
1、可加热仪器:2、计量仪器:(1)仪器A的名称:量
微生物操作主要设备和器具
今天盘点一下微生物操作主要设备和器具,别嫌我啰嗦
浅谈通风柜使用基本常识
 众所周知,通风柜功能中最主要的就是排气功能。在

专题文章

    CopyRight 2018-2019 实验室设备网 版权所有 win10的实时保护怎么永久关闭