Vector-Matrix-Multiplication in java with parallel colt

681 views Asked by At

I would like to multiply a vector (1 x n) with a matrix (m x n) in java and the library parallel colt. I guess I have chosen it because it has parallel in its name. So you are invited to give me other nice matrix librarys in java.

But my problem is particular the vector-matrix-multiplication... I haven't found a seperate method for it on the DenseDoubleMatrix2D class? How can I do it?

Thanks!

1

There are 1 answers

2
Chthonic Project On

The matrix multiplication can be done by the DoubleAlgebra class, which has the overloaded mult methods.