|
Numeric.Probability.Simulation |
|
|
Description |
Simulation
|
|
Synopsis |
|
class C c where | (~.) :: (Fractional prob, Ord prob, Random prob, Ord a) => Int -> (a -> c a) -> Transition prob a | (~..) :: (Fractional prob, Ord prob, Random prob, Ord a) => (Int, Int) -> (a -> c a) -> RExpand prob a | (~*.) :: (Fractional prob, Ord prob, Random prob, Ord a) => (Int, Int) -> (a -> c a) -> Transition prob a |
|
|
|
Documentation |
|
|
Simulation means to repeat a Rnd.change change many times and
to accumulate all results into a distribution. Therefore,
simulation can be regarded as an approximation of distributions
through randomization.
The Sim class allows the overloading of simulation for different
kinds of generators, namely transitions and Rnd.change changes:
| | Methods | | returns the final randomized transition
| | | returns the whole trace for a k-fold simulation
| | | returns the whole trace for a single simulation
|
| | Instances | |
|
|
Produced by Haddock version 2.4.2 |