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,939 questions

51,875 answers

573 users

How to add 2 matrices in JavaScript

1 Answer

0 votes
const a = [
 [1, 0, 2],
 [3, 5, 6],
 [7, 4, 1]
];
const b = [
 [1, 0, 1],
 [2, 2, 1],
 [1, 3, 1]
];
const sum = [
 [0, 0, 0],
 [0, 0, 0],
 [0, 0, 0],
];
 
const rows = a.length;
const cols = a[0].length;
 
for (let i = 0; i < rows; i++) {
    for (let j = 0; j < cols; j++) {
		sum[i][j] = a[i][j] + b[i][j];
    }
}
 
let s = "";
for (let i = 0; i < rows; i++) {
    for (let j = 0; j < cols; j++) {
		s += sum[i][j] + " ";
    }
	console.log(s);
	s = "";
}
 
 
 
   
     
 
/*
run:
     
"2 0 3 "
"5 7 7 "
"8 7 2 "
     
*/

 



answered Aug 4, 2021 by avibootz
edited Aug 4, 2021 by avibootz

Related questions

1 answer 95 views
95 views asked Aug 4, 2021 by avibootz
1 answer 110 views
110 views asked Aug 4, 2021 by avibootz
1 answer 108 views
108 views asked Aug 4, 2021 by avibootz
1 answer 91 views
91 views asked Aug 4, 2021 by avibootz
1 answer 113 views
1 answer 101 views
4 answers 236 views
...