Apache Commons Math: how to perform sum along rows/columns?

Apache Commons Math: how to perform sum along rows/columns?



I'm pretty new to Apache Common Math, so please pardon the trivial questions.



Based on the API doc, I'm unable to figure out how to perform column-wise or row-wise sum.


import org.apache.commons.math3.linear.RealMatrix;
import org.apache.commons.math3.linear.MatrixUtils;

double values = 1.0, 2.0, 3.0, 4.0, 5.0, 6.0;
RealMatrix mtx = MatrixUtils.createRealMatrix(values);



The above code generate a matrix like the following:


[[1, 2],
[3, 4],
[5, 6]]



What's the right syntax to perform column-wise sum? Which would give me:


[9, 12]



And how do I perform row-wise sum? Which would give me:


[3,
7,
11
]



For comparison, below is the syntax in Scala's Breeze library:


import breeze.linalg._
val mtx = DenseMatrix((1.0, 2.0), (3.0, 4.0), (5.0, 6.0))

// sum along the column direction
sum(mtx(::, *))
// Transpose(DenseVector(9.0, 12.0))


// sum along the row direction
sum(mtx(*, ::))
// DenseVector(3.0, 7.0, 11.0)




1 Answer
1



Seems there is no simple method to achieve that, how about generating a ones matrix to do the sum?, like:


//get the row sums
mtx.multiply(MatrixUtils.createRealMatrix(new double1, 1))
> Array2DRowRealMatrix3.0,7.0,11.0
//get the column sums
MatrixUtils.createRealMatrix(new double1, 1, 1).multiply(mtx)
> Array2DRowRealMatrix9.0,12.0



Thanks for contributing an answer to Stack Overflow!



But avoid



To learn more, see our tips on writing great answers.



Some of your past answers have not been well-received, and you're in danger of being blocked from answering.



Please pay close attention to the following guidance:



But avoid



To learn more, see our tips on writing great answers.



Required, but never shown



Required, but never shown




By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)