[ 
https://issues.apache.org/jira/browse/HAMA-11?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Edward J. Yoon updated HAMA-11:
-------------------------------

    Fix Version/s: 0.1.0
         Assignee: Edward J. Yoon

> Adding and Subtracting Matrices
> -------------------------------
>
>                 Key: HAMA-11
>                 URL: https://issues.apache.org/jira/browse/HAMA-11
>             Project: Hama
>          Issue Type: Improvement
>          Components: algorithm
>            Reporter: Edward J. Yoon
>            Assignee: Edward J. Yoon
>             Fix For: 0.1.0
>
>
> Matrix addition/subtraction is fairly simple, and is done entry-wise. For 
> instance:
> If Matrix A = {[a, b], [c, d]}, Matrix B = {[e, f], [g, h]},
> A + B
> Add the pairs of entries, and simplify for the final answer:
> {[a, b], [c, d]} + {[e, f], [g, h]} = {[a + e, b + f], [c + g, d + h]}
> So, we can solve this using the mapreduce by 1D row-wise partitioning.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to