user2129910
user2129910

Reputation: 33

Vector-Matrix-Multiplication in java with parallel colt

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!

Upvotes: 1

Views: 684

Answers (1)

Chthonic Project
Chthonic Project

Reputation: 8346

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

Upvotes: 2

Related Questions