资源简介
Normal (aka Gaussian) distribution
代码片段和文件信息
//*******************************************************************************
// Repast .NET was made possible in part by the Defense Program Office for Mission
// Assurance Naval Surface Warfare Center Dahlgren Virginia.
// For all questions please send e-mail to repast-interest@sourceforge.net.
//http://www.koders.com/csharp/fidA7F93CFAD1F8E5346FD77A83C36E8F103322793E.aspx
//********************************************************************************
/*
based on code under the following license:
Copyright 1999 CERN - European Organization for Nuclear Research.
Permission to use copy modify distribute and sell this software and its documentation for any purpose
is hereby granted without fee provided that the above copyright notice appear in all copies and
that both that copyright notice and this permission notice appear in supporting documentation.
CERN makes no representations about the suitability of this software for any purpose.
It is provided “as is“ without expressed or implied warranty.*/
using System;
using Probability = cern.jet.stat.Probability;
using RandomStartingValueSource = cern.jet.random.engine.RandomStartingValueSource;
namespace cern.jet.random
{
/// Normal (aka Gaussian) distribution; See the math definition
/// and animated definition.
///
/// 1 2
/// pdf(x) = --------- exp( - (x-mean) / 2v )
/// sqrt(2pi*v)
/// x
/// -
/// 1 | | 2
/// cdf(x) = --------- | exp( - (t-mean) / 2v ) dt
/// sqrt(2pi*v)| |
/// -
/// -inf.
///
/// where v = variance = standardDeviation^2.
///
/// Instance methods operate on a user supplied uniform random number generator; they are unsynchronized.
///
/// Static methods operate on a default uniform random number generator; they are synchronized.
///
/// Implementation: Polar Box-Muller transformation. See
/// G.E.P. Box M.E. Muller (1958): A note on the generation of random normal deviates Annals Math. Statist. 29 610-611.
///
///
/// wolfgang.hoschek@cern.ch
///
/// 1.0 09/24/99
///
public class Normal:AbstractContinousDistribution
{
protected internal double mean;
protected internal double variance;
protected internal double standardDeviation;
protected internal double cache; // cache for Box-Mueller algorithm
protected internal bool cacheFilled; // Box-Mueller
protected internal double SQRT_INV; // performance cache
// The uniform random number generated shared by all static methods.
protected internal static Normal shared;
/// Constructs a normal (gauss) distribution.
/// Example:
相关资源
- C#实现的遗传算法类库
- 组合 算法 C# 背包问题
- c#语言实现K短路算法
- C# 视觉处理代码、神经网络和遗传算
- RSA算法实现加、解密
- 四叉树算法(KrigingCal)
- delta机器人运动学算法正向逆向求解
- C#多元线性回归算法
- C#实现封装SPC过程能力工具类ProcessC
- 国密SM4算法 C#
- TIN生成算法实现.zip
- 网络安全LSB算法 采用C# 实现文字的隐
- C#数字图像处理算法典型
- C#数值计算算法编程
- 《C#数值计算算法编程》电子书+随书
- 数据结构与算法C#
- c#四叉树算法实现
- A*逆向路径搜索算法C#代码以及地图文
- 武汉大学 C#数据结构与算法
- C#+ArcEngine面周边点抽稀源码
- 操作系统课设理发师问题,时间片轮
- 图像加密算法与实践
- C#数字图像处理算法典型赵春江随书源
- 数据结构与算法:C#语言描述(中文)
- C#数据结构与算法
- 校园导游图 C# floyd算法
- 数据结构与算法:C#语言描述(中文)
- 基于离散点的构TIN算法C#
- 平面度及平整度算法
- C#面向对象基于winform的扫雷游戏和简
评论
共有 条评论