On 28/11/12 21:34, Ricky wrote:
Hi all,
I am doing a project on traffic simulation. I want to introduce exponential
arrival distribution to precede this task. Therefore I want write a code in
python for exponential arrival distribution. I am very new for programming and
if anybody can help m
Ricky writes:
> I am doing a project on traffic simulation. I want to introduce
> exponential arrival distribution to precede this task. Therefore I
> want write a code in python for exponential arrival distribution.
I've never heard of an "exponential arrival distribution" and googling
fails. D
Hi, Ricky,
Traffic simulation sounds like a good topic to use SimPy, which is a
discrete-event simulation library in Python,
c.f. http://simpy.sourceforge.net
Professor Norm Matloff wrote a very good tutorial on SimPy, and you can
download it here: http://heather.cs.ucdavis.edu/~matloff/simcourse
I mean this one:
for i in range(0,4):
print "%i = %i" % (i * 10 **i)
--
Best Regards,
David Hutto
CEO: http://www.hitwebdevelopment.com
--
http://mail.python.org/mailman/listinfo/python-list
>> I am doing a project on traffic simulation. I want to introduce
>> exponential arrival distribution to precede this task. Therefore I want
>> write a code in python for exponential arrival distribution. I am very new
>> for programming and if anybody can help me on this that would be great.
Fi
On Wed, Nov 28, 2012 at 2:34 PM, Ricky wrote:
>
> Hi all,
>
> I am doing a project on traffic simulation. I want to introduce
> exponential arrival distribution to precede this task. Therefore I want
> write a code in python for exponential arrival distribution. I am very new
> for programming an
Hi all,
I am doing a project on traffic simulation. I want to introduce exponential
arrival distribution to precede this task. Therefore I want write a code in
python for exponential arrival distribution. I am very new for programming and
if anybody can help me on this that would be great.
Ch