Dew Stats Master .NET
RandomNormal Routine
Summary
Normal distribution random generator.

Unit
StatRandom

Declaration
Procedure RandomNormal(mu, sigma: TSample; Results: TDenseMtxVec; Seed: Integer = -1);

Description
This routine generates Result.Length pseudo random numbers, using the normal distribution with parameters mu and sigma. The random numbers are stored in the Results vector. An exception is raised if Result vector is complex.
Categories
Random number generators

Example 1

Generate 2000 random numbers by using the normal distribution with parameters mu=3.5 and sigma=0.

Uses MtxExpr, StatRandom; procedure Example; var Res: Vector; begin Res.Size(2000); RandomNormal(0,1, Res); end;
#include "MtxVecCpp.h" #include "StatRandom.hpp" void __fastcall Example() { Vector Res; Res->Size(2000,false); RandomNormal(0.0, 1.0, Res, 1); }
using Dew.Math; using Dew.Stats.Units; namespace Dew.Examples { private void Example() { Vector r = new Vector(2000,false); StatRandom.RandomNormal(0.0, 1.0 ,r, -1); } }


Copyright 2008 Dew Research
http://www.dewresearch.com