亲爱的,任何人都可以在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
答案 0 :(得分:0)