2

我通常可以很容易地抓住这些,但是......

function linear_regression($x, $y) {

// calculate number points
$n = count($x);

// ensure both arrays of points are the same size
if ($n != count($y)) {

trigger_error("linear_regression(): Number of elements in coordinate arrays do not match.", E_USER_ERROR);

}

// calculate sums
$x_sum = array_sum($x);
$y_sum = array_sum($y);

$xx_sum = 0;
$xy_sum = 0;

for($i = 0; $i < $n; $i++) {

$xy_sum+=($x[$i]*$y[$i]);
$xx_sum+=($x[$i]*$x[$i]);

  }



  // calculate slope
  //$m = (($n * $xy_sum) - ($x_sum * $y_sum)) / (($n * $xx_sum) - ($x_sum * $x_sum));

  $divisor = (($n * $xx_sum) – ($x_sum * $x_sum));
if ($divisor == 0){
 $m = 0;
} else {
$m = (($n * $xy_sum) – ($x_sum * $y_sum)) / $divisor;
}


  // calculate intercept
  $b = ($y_sum - ($m * $x_sum)) / $n;

  // return result
  return array("m"=>$m, "b"=>$b);

}

var_dump( linear_regression(array(1, 2, 3, 4, 4), array(1.5, 1.6, 2.1, 3.0, 6)) );

错误发生在这里$divisor = (($n * $xx_sum) – ($x_sum * $x_sum));

任何想法为什么?

4

4 回答 4

2

减号是一个花哨的 unicode 破折号(我认为是 em 破折号)而不是常规的 ascii - 字符。

于 2013-11-10T03:13:13.587 回答
1

别问我是怎么发现的,但你的“-”不是真正的“-”,是另一个字符,但外观相同

好的,您没有问我,但我在http://writecodeonline.com/php/发现,它无法识别您的“-”字符

现在使用真正的“-”工作代码,您可以复制粘贴,然后查看:

function linear_regression($x, $y) {

// calculate number points
$n = count($x);

// ensure both arrays of points are the same size
if ($n != count($y)) {

trigger_error("linear_regression(): Number of elements in coordinate arrays do not match.", E_USER_ERROR);

}

// calculate sums
$x_sum = array_sum($x);
$y_sum = array_sum($y);

$xx_sum = 0;
$xy_sum = 0;

for($i = 0; $i < $n; $i++) {

$xy_sum+=($x[$i]*$y[$i]);
$xx_sum+=($x[$i]*$x[$i]);

  }



  // calculate slope
  //$m = (($n * $xy_sum) - ($x_sum * $y_sum)) / (($n * $xx_sum) - ($x_sum * $x_sum));

  $divisor = (($n * $xx_sum) - ($x_sum * $x_sum));
if ($divisor == 0){
 $m = 0;
} else {
$m = (($n * $xy_sum) - ($x_sum * $y_sum)) / $divisor;
}


  // calculate intercept
  $b = ($y_sum - ($m * $x_sum)) / $n;

  // return result
  return array("m"=>$m, "b"=>$b);

}

var_dump( linear_regression(array(1, 2, 3, 4, 4), array(1.5, 1.6, 2.1, 3.0, 6)) );
于 2013-11-10T03:15:37.110 回答
0

我重新输入了这样的违规行:

$divisor = (($n*$xx_sum)-($x_sum * $x_sum));

错误消失了。经过一番戳,错误似乎与中间的减号有关。删除它并重新输入它似乎可以解决问题。

看到这个小提琴

于 2013-11-10T03:14:25.730 回答
0

亚当是对的,但你也没有关闭for循环。这里试试这个。

此外,这里的减号是错误的符号:

$divisor = (($n * $xx_sum) - ($x_sum * $x_sum));

以及这里:

$m = (($n * $xy_sum) - ($x_sum * $y_sum)) / $divisor;

我的功能的清理版本for也在这里设置了闭环。

function linear_regression($x, $y) {

  // calculate number points
  $n = count($x);

  // ensure both arrays of points are the same size
  if ($n != count($y)) {
    trigger_error("linear_regression(): Number of elements in coordinate arrays do not match.", E_USER_ERROR);
  }

  // calculate sums
  $x_sum = array_sum($x);
  $y_sum = array_sum($y);

  $xx_sum = 0;
  $xy_sum = 0;

  for($i = 0; $i < $n; $i++) {

    $xy_sum+=($x[$i]*$y[$i]);
    $xx_sum+=($x[$i]*$x[$i]);

    // calculate slope
    //$m = (($n * $xy_sum) - ($x_sum * $y_sum)) / (($n * $xx_sum) - ($x_sum * $x_sum));

    $divisor = (($n * $xx_sum) - ($x_sum * $x_sum));
    if ($divisor == 0) {
      $m = 0;
    }
    else {
      $m = (($n * $xy_sum) - ($x_sum * $y_sum)) / $divisor;
    }

    // calculate intercept
    $b = ($y_sum - ($m * $x_sum)) / $n;

  } 

  // return result
  return array("m"=>$m, "b"=>$b);

} // linear_regression
于 2013-11-10T03:14:35.320 回答