Pemrograman Paralel Penjumlahan Dua Matriks — Parallel Programming of Matrix Summation


In this case, we talk about parallel programming of matrix summation. Exactly if we have two matrixes and we want to add every element , then save the total in a new matrix.



For example, we have two matrix

1 2 and 5 6

3 4 7 8

We want to add every element and the final result we want is

6 8

10 12

The complete project of the case above can be downloaded in:

http://www.ziddu.com/download/4146953/penjumlahanmatriks.zip.html

Leave a comment