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) cols in JavaScript

1 Answer

0 votes
function sum_matrix_cols(matrix, cols_sum)
{
    var rows = matrix.length;
    var cols = matrix[0].length;
     
    for (var j = 0; j < cols; j++) {
        for (var i = 0; i < rows; i++) 
            cols_sum[j] += matrix[i][j]
    }
}
 
var matrix = [
  [11, 32, 13, 81],
  [20, 80, 50, 990]
];
 
var cols_sum = [0,0,0,0];
 
sum_matrix_cols(matrix, cols_sum);
 
for (var i = 0; i < 4; i++)
    document.writeln(cols_sum[i] + "<br />\n");
 
     
/*
run:
  
31
112
63
1071
   
*/

 



answered Apr 18, 2018 by avibootz
edited Apr 21, 2018 by avibootz

Related questions

1 answer 177 views
177 views asked Apr 18, 2018 by avibootz
1 answer 154 views
154 views asked Apr 18, 2018 by avibootz
1 answer 180 views
180 views asked Apr 18, 2018 by avibootz
2 answers 192 views
1 answer 112 views
112 views asked Apr 13, 2018 by avibootz
1 answer 181 views
181 views asked Apr 13, 2018 by avibootz
...