Poisson Distribution VB.NET和PHP

时间:2015-04-08 06:58:00

标签: php vb.net statistics distribution poisson

亲爱的,任何人都可以在PHP中解释为什么这个泊松分布的代码 正确执行VB.NET中相同的代码是错误的? 感谢

PHP:

for ($i = 0; 10 ; $i++) {   
     $Poisson =  $Poisson + (((pow(($TassodiDomanda*$LT),$i))/factorial($i))*exp(-$TassodiDomanda* $LT));     
    if ($Poisson > 0.9) {
    $Result = $i ;
    return $Result;
    break;
    }
    }

VB.NET:

 For i = 1 To 100
        Poisson += (((((Math.Pow((tassodidomanda * LT), i)) / Factorial(i))) * Math.Exp(-(tassodidomanda * LT)))
        If Poisson >= 0.9 Then
            richiesti = i
            Exit For
        End If
    Next i

1 个答案:

答案 0 :(得分:0)

好消息, 我通过使用这个梦幻般的库来解决它

http://accord-framework.net/

获取更详细的信息

https://groups.google.com/forum/#!forum/accord-net

感谢这些开发人员