Class RandGenExponential generates random numbers from an exponential distribution.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
[SerializableAttribute]
public class RandGenExponential : RandomNumberGenerator
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class RandGenExponential _
	Inherits RandomNumberGenerator
Visual C++
[SerializableAttribute]
public ref class RandGenExponential : public RandomNumberGenerator

Remarks

A random variable, W, is said to have an exponential distribution if it as a probability density function g(w) = lambda*exp(-lambda*w), where lambda > 0. The mean of an exponential distribution is 1/lambda, and the variance is 1/lambda*lambda.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Core..::.RandomNumberGenerator
    CenterSpace.NMath.Core..::.RandGenExponential

See Also