Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,994 questions

51,939 answers

573 users

How to sum 2D array (matrix) rows in PHP

1 Answer

0 votes
function sum_matrix_rows($arr, &$rows_sum)
{
    $rows = count($arr);
    $cols = count($arr[0]);
     
     for ($i = 0; $i < $rows; $i++) {
        for ($j = 0; $j < $cols; $j++)
            $rows_sum[$i] += $arr[$i][$j];
   }
}
 
$arr = array(
    array(11, 32, 13),
    array(20, 80, 990),
);
$rows_sum = array(0,0);

sum_matrix_rows($arr, $rows_sum);

 for ($i = 0; $i < 2; $i++) 
      echo $rows_sum[$i] . "<br />\n";
      
 
/*
run:
 
56
1090  
    
*/

 



answered Apr 16, 2018 by avibootz

Related questions

1 answer 211 views
1 answer 297 views
2 answers 208 views
1 answer 167 views
167 views asked Apr 17, 2018 by avibootz
1 answer 139 views
1 answer 193 views
193 views asked Apr 16, 2018 by avibootz
...