Return-Path: Delivered-To: apmail-incubator-hama-dev-archive@locus.apache.org Received: (qmail 87171 invoked from network); 6 Aug 2008 02:49:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Aug 2008 02:49:34 -0000 Received: (qmail 69979 invoked by uid 500); 6 Aug 2008 02:49:34 -0000 Delivered-To: apmail-incubator-hama-dev-archive@incubator.apache.org Received: (qmail 69960 invoked by uid 500); 6 Aug 2008 02:49:34 -0000 Mailing-List: contact hama-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hama-dev@incubator.apache.org Delivered-To: mailing list hama-dev@incubator.apache.org Received: (qmail 69945 invoked by uid 99); 6 Aug 2008 02:49:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Aug 2008 19:49:34 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Aug 2008 02:48:46 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 598F3234C190 for ; Tue, 5 Aug 2008 19:48:44 -0700 (PDT) Message-ID: <776741625.1217990924365.JavaMail.jira@brutus> Date: Tue, 5 Aug 2008 19:48:44 -0700 (PDT) From: "Edward J. Yoon (JIRA)" To: hama-dev@incubator.apache.org Subject: [jira] Updated: (HAMA-11) Adding and Subtracting Matrices In-Reply-To: <299289571.1217325151834.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HAMA-11?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Edward J. Yoon updated HAMA-11: ------------------------------- Component/s: (was: algorithm) implementation > Adding and Subtracting Matrices > ------------------------------- > > Key: HAMA-11 > URL: https://issues.apache.org/jira/browse/HAMA-11 > Project: Hama > Issue Type: Improvement > Components: implementation > 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.