분포도?
통계?

모르겠다..

쁘아종 이랍니다.

ㅡㅡ;

자바로 구현된 소스 입니다.

    public static double poisson(int x, double lambda){
        double logsum = 0;
           
        for (int i=1;i<=x;i++)
        {
            logsum+=Math.log(i);
        }
        return Math.exp(x*Math.log(lambda)-lambda-logsum);
    }

User image  

Leave a Reply

Your email address will not be published. Required fields are marked *