prunf | R Documentation |
this function generates random numbers which follow uniform distribution [0,1]
prunf(
N = 100,
Time = TRUE,
n0 = 5,
x00 = 0.5362,
x01 = 0.357,
x02 = 0.235,
a1 = 3.69,
a2 = 0.7
)
N |
How many numbers are required |
Time |
if enabled TRUE the numbers are time dependent |
n0 |
seed value of linear congruence map it can take value of any natural number |
x00 |
seed value of saw-tooth map values from 0 to 1 |
x01 |
seed value of logistic map values from 0 to 1 |
x02 |
seed value of baker map |
a1 |
parameter of logistic map the value takes from 3.5 to 4 |
a2 |
parameter of baker map the value it takes values greater than or equalt to 0.5 |
gives a vector of pseudo random numbers generated of desired length
prunf(10)
prunf(10,Time=TRUE)
prunf(10,Time=TRUE)
prunf(10,Time=TRUE)
prunf(10,2)
prunf(10,Time=TRUE,2)
prunf(10,Time=TRUE,2)
prunf(10,5,0.52)
prunf(15,2,0.352)
prunf(10,2,0.652,0.235)
prunf(10,Time=TRUE,2,0.652,0.235)
prunf(9,7,0.52,0.4235,0.389)
prunf(10,Time=TRUE,2,0.752,0.235,0.351,3.8)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.