Tagged Questions
The Poisson distribution is a statistical distribution for describing events occurring at random intervals. It is commonly used to model arrivals or system loads.
9
votes
3answers
4k views
calculate poisson probability percentage in python
When you use the POISSON function in Excel (or in OpenOffice Calc), it takes two arguments:
an integer
an 'average' number
and returns a float.
In python (i tried RandomArray and NumPy) it returns ...
7
votes
2answers
141 views
Return a dynamic vector from C to R
I am writing some code in C to be called dynamically from R.
This code generates a path of a random Poisson process up to a desired time T.
So at every call to my C function, the length of the ...
7
votes
4answers
9k views
Algorithm to generate Poisson and binomial random numbers?
i've been looking around, but i'm not sure how to do it.
i've found this page which, in the last paragraph, says:
A simple generator for random numbers taken from a Poisson distribution is obtained ...
5
votes
5answers
9k views
Java Generator for Poisson and Uniform Distributions?
From what I understand, the standard generator is for the Normal Distribution. I have to generate random numbers according to the Normal, Uniform and Poisson Distributions, but I can't seem to find a ...
4
votes
5answers
440 views
generating poisson variables in c++
I implemented this function to generate a poisson random variable
typedef long unsigned int luint;
luint poisson(luint lambda) {
double L = exp(-double(lambda));
luint k = 0;
double p = ...
3
votes
2answers
72 views
Poisson arrival distribution function and keep track it
I am trying to create a random "hello world" function based on the poisson arrival. In the code below, I define that the average mean (Lamda) is 5. And I want the time to elapse from 1 - 5 second, and ...
3
votes
2answers
321 views
Generate Poisson process using R
I want to generate a process where in every step there is a realisation of a Poisson random variable, this realisation should be saved and then it should be realize the next Poisson random variable ...
2
votes
3answers
125 views
Random Poisson Noise
I am looking for the equivalent of the below Matlab function in Mathematica:
"R = poissrnd(lambda) generates random numbers from the Poisson distribution with mean parameter lambda. lambda can be a ...
2
votes
2answers
242 views
Poisson variates, λ and arrival rate connection, Java network simulation
I'm developing a network simulator in which events for packet arrivals and transmission attempts are following a Poisson distribution. I have an adaptation of Knuth's algorithm:
public class Poisson ...
2
votes
2answers
83 views
Poisson delay formula/function for VB?
I have a requirement where in I need to sleep for a Poisson duration before sending the next packet. The current formula I can think of is
( e^(-lambda) X lambda^t ) / fact(t)
However, for time ...
2
votes
4answers
4k views
How do I generate a Poisson Process?
Original Question:
I want to generate a Poisson process. If the number of arrivals by time t is N(t) and I have a Poisson distribution with parameter lambda how do I generate N(t)? How would I do ...
1
vote
1answer
74 views
Using FastICA in Matlab to separate a mixture of Gaussian and Poisson matrices
I need to generate a matrix with a Gaussian distribution (with values spread mainly from -5 to 5), a Poisson matrix, mix them and give them as input to the Matlab FastICA.
I am a newbie on Matlab, ...
1
vote
1answer
57 views
Boost variate_generator for poisson distribution problems
I use boost variate_generator to generate random numbers from poisson distribution for boost_1_46_1 (apparently folder structures for variate_generator randomly change between versions).
The ...
1
vote
1answer
68 views
Bursty packet traffic in Java
I have a requirement to simulate a network traffic which is Poisson and Bursty (Long or Heavy Tailed) inter arrival times. I could do the Poisson part as
delay = - log(1 - rand.nextDouble()) * ...
1
vote
1answer
96 views
Randomly selecting values from a zero inflated distribution in R
Hello and thanks in advance for the help!
A while back I asked a question about randomly selecting values according to a probability distribution. This is related, but I think it deserves its own ...
1
vote
1answer
241 views
Simulating Poisson Waiting Times - Java
I need to simulate Poisson wait times. I've found many examples of simulating the number of arrivals, but I need to simulate the wait time for one arrival, given an average wait time.
I keep finding ...
1
vote
1answer
321 views
Poisson simulation not working as expected?
I have a simple script to set up a Poisson distribution by constructing an array of "events" of probability = 0.1, and then counting the number of successes in each group of 10. It almost works, but ...
1
vote
1answer
221 views
Solving Sparse Linear Problem With Some Known Boundary Values
I'm trying to solve a Poisson equation on a rectangular domain which ends up being a linear problem like
Ax=b
but since I know the boundary conditions, there are nodes where I have the solution ...
1
vote
2answers
692 views
Poisson Disk distribution on hemisphere
I just implemented Poisson Disk generation in the plane with this simple algorithm:
http://people.cs.ubc.ca/~rbridson/docs/bridson-siggraph07-poissondisk.pdf
Now I would like to generate a Poisson ...
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
81 views
how would I implement the following probability in a programming language, for example Java
Suppose that you have 10 stations that are sending packets at a given time
let's assume that the time is obtained from a counter, so for example
we can have
counter = 1,2,3,...
if counter=1 then ...
0
votes
1answer
58 views
Is random.expovariate equivalent to a Poisson Process
I read somewhere that the python library function random.expovariate produces intervals equivalent to Poisson Process events.
Is that really the case or should I impose some other function on the ...
0
votes
2answers
52 views
poisson eq. with spectral method
I wrote poisson eq. solver with spectral method. However, the obtained result does not coincide with the result of difference method with periodic boundary condition.
I think I am mistaken in the use ...
0
votes
1answer
452 views
How to simulate Poisson arrival?
I want to generate events that "arrive" with "t" seconds as mean inter-arrival delay? Starting at time 0, how do I generate the times when the event occurs? Basically, I want to generate sequence of ...
0
votes
3answers
247 views
Python: create a distribution from a list based on number of items that fall within certain ranges
I tagged this question with poisson as I am not sure if it will be helpful in this case.
I need to create a distribution (probably formatted as an image in the end) from a list of data.
For ...
0
votes
2answers
815 views
How do I generate discrete random events with a Poisson distribution?
I'm aware of Knuth's algorithm for generating random Poisson distributed numbers (below in Java) but how do I translate that into calling a method, generateEvent(), randomly over time?
int ...
0
votes
2answers
1k views
Calculation of Poisson distribution in C
I need a C function to calculate Poisson distribution for values of k upto 720. I need a highly efficient solution.
I urgently need this solution.
Thanks in advance