我正在尝试编写我自己的正弦函数实现来获得乐趣,但我不断得到:
Fatal error: Maximum execution time of 30 seconds exceeded
我有一个小的 HTML 表单,您可以在其中输入您要查找的 Sin(x) 的“x”值以及要计算的“迭代”次数(您的值的精度),其余的是 PhP。数学基于维基百科上正弦的“系列定义”:-> http://en.wikipedia.org/wiki/Sine#Series_definition 这是我的代码:
<?php
function factorial($int) {
if($int<2)return 1;
for($f=2;$int-1>1;$f*=$int--);
return $f;
};
if(isset($_POST["x"]) && isset($_POST["iterations"])) {
$x = $_POST["x"];
$iterations = $_POST["iterations"];
}
else {
$error = "You forgot to enter the 'x' or the number of iterations you want.";
global $error;
}
if(isset($x) && is_numeric($x) && isset($iterations) && is_numeric($iterations)) {
$x = floatval($x);
$iterations = floatval($iterations);
for($i = 0; $i <= ($iterations-1); $i++) {
if($i%2 == 0) {
$operator = 1;
global $operator;
}
else {
$operator = -1;
global $operator;
}
}
for($k = 1; $k <= (($iterations-(1/2))*2); $k+2) {
$k = $k;
global $k;
}
function sinus($x, $iterations) {
if($x == 0 OR ($x%180) == 0) {
return 0;
}
else {
while($iterations != 0) {
$result = $result+(((pow($x, $k))/(factorial($k)))*$operator);
$iterations = $iterations-1;
return $result;
}
}
}
$result = sinus($x, $iterations);
global $result;
}
else if(!isset($x) OR !isset($iterations)) {
$error = "You forgot to enter the 'x' or the number of iterations you want.";
global $error;
}
else if(isset($x) && !is_numeric($x)&& isset($iterations) && is_numeric($iterations)) {
$error = "Not a valid number.";
global $error;
}
?>
我的错误可能来自这一行的无限循环:
$result = $result+(((pow($x, $k))/(factorial($k)))*$operator);
但我不知道如何解决这个问题。我在这一行要做的是计算:
((pow($x, $k)) / (factorial($k)) + (((pow($x, $k))/(factorial($k)) * ($operator)
迭代:
+ (((pow($x, $k))/(factorial($k)) * $operator)
“$i”和“$k”的值相应改变的“$iterations”次数。
我真的被困在这里了!需要一点帮助。先感谢您 !
顺便说一句:阶乘函数不是我的。我在 PhP.net 评论中找到了它,显然它是最佳阶乘函数。