Tagged Questions
4
votes
2answers
4k views
How to use boost normal distribution classes?
I'm trying to use boost::normal_distribution in order to generate a normal distribution with mean 0 and sigma 1.
The following code doesn't work as some values are over or beyond -1 and 1 (and ...
2
votes
1answer
154 views
Best way to generate a set of integers of size N, distributed like a normal distribution, given a mean and std. deviation
I'm looking for a way to generate a set of integers with a specified mean and std. deviation.
Using the random library, it is possible to generate a set of random doubles distributed in gaussian ...
2
votes
4answers
699 views
Probability of selecting an element from a set
The expected probability of randomly selecting an element from a set of n elements is P=1.0/n .
Suppose I check P using an unbiased method sufficiently many times. What is the distribution type of P? ...
1
vote
2answers
38 views
Javascript equivalent for Inverse normal function ? eg Excel's NORMSINV() or NORMINV()?
I'm trying to convert something from my excel spreadsheets into Javascript and came along the NORMSINV() macro in my spreadsheets.
The NormSInv() is nicely documented at ...
1
vote
1answer
98 views
PHP: Random number from a normal distribution
In PHP, can I get a set of random numbers which conform to a specified mean and standard deviation?
1
vote
3answers
460 views
Calculate Normal Distrubution using Java
EDIT:
Actually I realized that what I need is the value of X. Let me make it clearer. Suppose, I know the probability P = 0.95 since I want to use two standard deviations. I know the ranges ...
1
vote
5answers
560 views
Combining two normal random variables
suppose I have the following 2 random variables :
X where mean = 6 and stdev = 3.5
Y where mean = -42 and stdev = 5
I would like to create a new random variable Z based on the first two and knowing ...
1
vote
8answers
2k views
Generating a gaussian distribution with only positive numbers
Is there any way to randomly generate a set of positive numbers such that they have a desired mean and standard deviation?
I have an algorithm to generate numbers with a gaussian distribution, but ...
0
votes
1answer
52 views
Central limit theorem in [R]
I am working with the language [R] to generate a sample of M = 32000 averages each calculated by averaging 36 independent values of the random variable continuous uniform distribution (0, 1) is ...
0
votes
0answers
254 views
multivariate linear bayesian regression in matlab with normal-gamma assumption for data [closed]
1-for the general case : data is normal-gamma ( mean normal and sd is gamma) and I want to estimate the b and a distribution ( they assumed to be normal) in y=bx+a using Bayesian regression. I know I ...
0
votes
1answer
497 views
Sample from multivariate normal/Gaussian distribution in C++
I've been hunting for a convenient way to sample from a multivariate normal distribution. Does anyone know of a readily available code snippet to do that? For matrices/vectors, I'd prefer to use ...