aivika-0.4.1: A multi-paradigm simulation library

Stabilityexperimental
MaintainerDavid Sorokin <david.sorokin@gmail.com>
Safe HaskellNone

Simulation.Aivika.Dynamics.Random

Description

Tested with: GHC 7.0.3

Below are defined random functions that mostly return discrete processes. Literally, it means that the values are initially defined in integration time points and then they are passed to the discrete function.

Synopsis

Documentation

newRandom :: Simulation (Dynamics Double)Source

Return the uniform random numbers between 0.0 and 1.0 in the integration time points.

newNormal :: Simulation (Dynamics Double)Source

Return the normal random numbers with mean 0.0 and variance 1.0 in the integration time points.

normalGen :: IO (IO Double)Source

Normal random number generator.