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

link|improve this question
6  
This is not RentACoder, and lack of planning on your part does not constitute an emergency on our part. You're supposed to at least put in a minimal effort (and tell us what it was) rather than just make demands. – paxdiablo Jun 29 '09 at 10:42
Lack of planning: your logic in assuming that i dint plan has various perceived assumptions. Your logic is flawed. Rest assured, i would certainly not rent an illogical coder as you. – user130375 Jun 29 '09 at 10:55
7  
The generally accepted way to ask questions here is to first state what you've already tried so that (1) answerers don't repeat the steps you're already tried; and (2) you don't look like a complete idiot. The fact that you urgently need a solution is of no concern to anyone but yourself and adds nothing to your question but an air of abruptness and demand. I suggest you learn some social interaction skills before posting again (but I hold little hope of that). – paxdiablo Jun 29 '09 at 11:29
feedback

2 Answers

give a to try GSL: gsl_ran_poisson_pdf

link|improve this answer
+1 Nice! Didn't even know it existed :) – Magnus Skog Jun 29 '09 at 10:35
Thanks a lot :) – user130375 Jun 29 '09 at 10:56
feedback

If you want to calculate it yourself instead of using a library You can calculate it using the formula.. e^k*e^(-lambda)/k!
you can use log(n!) = log(n)+log(n-1!) and dynamic programming

link|improve this answer
feedback

Your Answer

 
or
required, but never shown