Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
12answers
18k views

Converting a Uniform Distribution to a Normal Distribution

How can I convert a uniform distribution (as most random number generators produce, e.g. between 0.0 and 1.0) into a normal distribution? What if I want a mean and standard deviation of my choosing?
17
votes
6answers
11k views

Generate random numbers following a normal distribution in C/C++

Does anyone know how I could easily generate random numbers following a normal distribution in C/C++ ? http://www.mathworks.com/access/helpdesk/help/toolbox/stats/normrnd.html I don't want to use ...
12
votes
6answers
4k views

Random Gaussian Variables

does someone of you know if there is a class in the standard library of .net, that gives me the functionality to create random variables that follow a gaussian distribution? Greets Sebastian
5
votes
4answers
3k views

Calculating confidence intervals for a non-normal distribution

First, I should specify that my knowledge of statistics is fairly limited, so please forgive me if my question seems trivial or perhaps doesn't even make sense. I have data that doesn't appear to be ...
4
votes
2answers
577 views

Code to generate Gaussian (normally distributed) random numbers in Ruby

What is some code to generate normally distributed random numbers in ruby? (Note: I answered my own question, but I'll wait a few days before accepting to see if anyone has a better answer.) EDIT: ...
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 ...
4
votes
4answers
2k views

C++ TR1: how to use the normal_distribution?

I'm trying to use the C++ STD TechnicalReport1 extensions to generate numbers following a normal distributions, but this code (adapted from this article): mt19937 eng; eng.seed(SEED); ...
3
votes
1answer
184 views

Adding floating point precision to qnorm/pnorm? (in R)

I would be interested to increase the floating point limit for when calculating qnorm/pnrom from their current level, for example: x <- pnorm(10) # 1 qnorm(x) # Inf qnorm(.9999999999999999444) # ...
3
votes
4answers
709 views

Python Uniform Spherical Distribution

I am looking to be able to create a uniform sphere of particles. This is what I am looking for(images courtesy of http://nojhan.free.fr/metah/) This is a picture of a slice of the sphere This is ...
3
votes
2answers
336 views

example algorithm for generating random value in dataset with normal distribution?

I'm trying to generate some random numbers with simple non-uniform probability to mimic lifelike data for testing purposes. I'm looking for a function that accepts mu and sigma as parameters and ...
2
votes
1answer
52 views

How to fit list of 3D data to a 2D normal distribution function (preferably in Python)

I am looking for any script (preferably Python) to calculate the two dimensional normal distribution function of series of three dimensional data. If one does not exist, I would appreciate any code, ...
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
1answer
182 views

Algorithm to distribute over *part* of a Normal distribution

Is there a single pass algorithm that can produce numbers distributed over part of a normal (Gaussian) distribution? I want to specify a base value (the center of the distribution), a standard ...
2
votes
3answers
279 views

Approximating numbers from a bell curve?

I've been banging my head against a wall on this one. I'm working on a project where the client owns a call centre and wants to estimate the number of people needed to work in half hour slots on a ...
2
votes
2answers
1k views

How to generate normally distributed random from an integer range?

Given the start and the end of an integer range, how do I calculate a normally distributed random integer between this range? I realize that the normal distribution goes into -+ infinity. I guess the ...
2
votes
3answers
4k views

C++: generate gaussian distribution

I would like to know if in C++ standard libraries there is any gaussian distribution number generator, or if you have any code snippet to pass. Thanks in advance.
2
votes
4answers
698 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
1answer
79 views

Normalized Random Number Distrubution Between 0 and 1 [0, 1) in C

I'm having trouble keeping randomly generated values that are normally distributed between 0 and 1 (including 0, excluding 1). I believe the algorithm is basically correct, I am just stumped here. Any ...
1
vote
2answers
35 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
2answers
46 views

Alternative for scipy.stats.norm.pdf?

Does anyone know of an alternative for scipy.stats.norm.pdf()? I'm hosting my python site on Google App Engine and Google doesn't support SciPy. I've tried this function, but that didn't return the ...
1
vote
2answers
54 views

Best method of calculating the integral of a function in PHP?

I am making a normal distribution calculator in PHP, but I can't figure out how to calculate the integral of a function using PHP. I've searched the web and stackoverflow, but I can't find anything ...
1
vote
1answer
95 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
5answers
171 views

How do I most effectively prevent my normally-distributed random variable from being zero?

I'm writing a Monte Carlo algorithm, in which at one point I need to divide by a random variable. More precisely: the random variable is used as a step width for a difference quotient, so I actually ...
1
vote
3answers
455 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
1answer
479 views

Java Guassian Distribution-Bell Curve

I have calculated mean and SD of a set of values. Now I need to draw a bell curve using those value to show the normal distribution in JAVA Swing. How do i proceed with this situation. List : 204 297 ...
1
vote
1answer
257 views

Random Color Deviation with Normal Distribution

I'd like to generate a random color, based on an original color and a normal distribution, so I can create a random texture telling the script "Okay, this is the general color you should be using, but ...
1
vote
5answers
557 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
5answers
421 views

Find the “peak” of a set of data

I have a set of data, for which I'd like to find an average peak. I've done some testing in Numbers.app to see what I'm after and if I make a chart of the dataset it has a feature it calls "polynomial ...
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
3answers
186 views

Overlaying a normal distribution on a histogram [closed]

Possible Duplicate: ggplot2: Overlay histogram with density curve sorry for what is probably a simple question, but I have a bit of a problem. I have created a histogram that is based on a ...
0
votes
1answer
127 views

Create Normal Distribution (Bell Curve) chart using FLOT

Has anyone tried creating Normal Distribution chart using FLOT? If so, can you please put me in a right direction with some suggestions and links to tutorial? Thanks.
0
votes
0answers
249 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
492 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 ...
0
votes
3answers
470 views

Java normal distribution

Good-evening everyone, I'm trying to simulate the arrival of fans to a stadium. The system itself, I believe it won't be a problem, but, the arrival of the fans follows a normal distribution. My ...
0
votes
3answers
284 views

R: Iteration by variable

I have the following dataset1: Height | Group 1,556 | A 2,111 | B 1,556 | A 2,341 | B 1,256 | A 2,411 | B I would like to compute shapiro wilk normality test for Height by variable ...
0
votes
1answer
733 views

generation of normally distributed random vector with covariance matrix

In matlab it is easy to generate a normally distributed random vector with a mean and a standard deviation. From the help randn: Generate values from a normal distribution with mean 1 and standard ...
0
votes
0answers
332 views

Flex / AS3 chart component to display normal distribution

Given a dataProvider with values ranging from 25 to 85: public var answers:ArrayCollection = new ArrayCollection([ {user_id: "A5", question_1: 35, question_2: 55}, {user_id: "A6", question_1: ...
-2
votes
2answers
92 views

how to sample normal distribution in matlab

I'm working on a pattern recognition project and in there I want to sample a 2 dimensional normal distribution with given parameters (mean and covariance matrix). For example if I want to have 100 ...