在数组中自动求和

时间:2011-10-29 02:24:12

标签: php arrays loops

我将尝试用此代码解释我遇到的问题。

此脚本适用于最多三人($ numRows = 3)。

$z=0;
$i=0;
$x=0;

do {
    $total[] = (
        ${'contaH'.$z}[$i+0]*$final[$x+0]+
        ${'contaH'.$z}[$i+1]*$final[$x+1]+
        ${'contaH'.$z}[$i+2]*$final[$x+2]
    );
    $z++;
} while ($z<$numRows); //3

但如果我只有四个人($ numRows = 4),我需要这样的东西:

$z=0;
$i=0;
$x=0;

do {
    $total[] = (
        ${'contaH'.$z}[$i+0]*$final[$x+0]+
        ${'contaH'.$z}[$i+1]*$final[$x+1]+
        ${'contaH'.$z}[$i+2]*$final[$x+2]+
        ${'contaH'.$z}[$i+3]*$final[$x+3]
        // if they are 5 persons ($numRows=5), here, should exists another row
    );
    $z++;
} while ($z<$numRows); //4

所以问题是在$ numRows中自动化这些变化。

这是矩阵代数的演示:

Enter image description here

我唯一需要的是将我的代码动态地放在一个人的函数中。

A   |  B |  C |  D
Person1
Person2
Person3
Person4
...

在我的案例中可能有所不同的仅仅是人数。

更多信息here

3 个答案:

答案 0 :(得分:2)

$z=0;
$i=0;
$x=0;
$numRows = 5;

do{
    $currentSum = 0;
    for($c = 0; $c < $numRows; $c++){
        $currentSum += (${'contaH'.$z}[$i+$c] * $final[$x+$c]);
    }
    $total[] = $currentSum;
    $z++;
}while($z < $numRows);

答案 1 :(得分:0)

$subtotal = 0;
for ($i = 0; $i < $numRows; $i++) {
   $subtotal += ${'contaH'.$z}[$i] * $final[$i];
}
$total[] = $subtotal;

答案 2 :(得分:0)

您可能对Math_Matrix库感兴趣,它可以帮助您进行各种矩阵运算。

但是,以下代码可自动执行您的解决方案:

function mat_mult($matrix, $vector) {
    $result = array();
    $matrixWidth = count($matrix[0]);
    for ($z = 0; $z < $matrixWidth; $z++) {
        $value = 0;
        for ($y = 0; $y < $matrixWidth; $y++) {
            $value += $matrix[$z][$y]*$vector[$y];
        }
        $result[] = $value;
    }
    return $result;
}

$matrix = array(
    array(1, 1/3.0, 2, 4),
    array(3, 1, 5, 3),
    array(1/2.0, 1/5.0, 1, 1/3.0),
    array(1/4.0, 1/3.0, 3, 1)
);
$vector = array(0.26, 0.50, 0.09, 0.16);

$v2 = mat_mult($matrix, $vector);

print_r($v2);

另外,要将其与现有的矩阵结构联系起来:

$matrix = array();
for ($z = 0; $z < $numRows; $z++) {
    $matrix[] = ${'contaH'.$z};
}