Code Monkey home page Code Monkey logo

Comments (4)

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
An easy way (but perhaps naive, performance wise) is:

public static SimpleMatrix rowTotals(SimpleMatrix A) { 
        SimpleMatrix l = new SimpleMatrix(1, A.numCols()); 
        l.set(1.0); 
        return l.mult(A.transpose()).transpose(); 
} 

public static SimpleMatrix columnTotals(SimpleMatrix A) { 
        SimpleMatrix l = new SimpleMatrix(1, A.numRows()); 
        l.set(1.0); 
        return l.mult(A).transpose(); 
} 

Which is a simple trick to get the totals. The final transpose is 
there just to get vertical vectors in stead of horizontal ones. I'm 
not sure if this is the most efficient way in ejml or if iteration is 
faster. Feel free to reuse. 

Original comment by [email protected] on 30 May 2011 at 12:15

from efficient-java-matrix-library.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
I remember you mentioned this before.  I'll add something similar to CommonOps.

Original comment by [email protected] on 1 Jun 2011 at 11:23

  • Changed state: Accepted
  • Added labels: Type-Enhancement
  • Removed labels: Type-Defect

from efficient-java-matrix-library.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
Similar functions have been added to CommonOps.  Take a look at sumRows() and 
sumCols() in common ops.  A more direct method was used to compute the output 
which should be faster.

Original comment by [email protected] on 11 Jun 2011 at 5:52

from efficient-java-matrix-library.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 15, 2024
Assuming that the functions added are sufficient.  Will reopen if this is not 
the case.

Original comment by [email protected] on 22 Jun 2011 at 6:50

  • Changed state: Fixed

from efficient-java-matrix-library.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.