While trying to use MLlib from Java, what is the correct way to use breeze Matrix operations?
For e.g. multiplication in scala it ist simply "matrix * vector
". How is the corresponding functionality expressed in Java?
There are methods like "$colon$times
" which might be invoked by the correct way
breeze.linalg.DenseMatrix<Double> matrix= ...
breeze.linalg.DenseVector<Double> vector = ...
matrix.$colon$times( ...
one might need an operator instance ... breeze.linalg.operators.OpMulMatrix.Impl2
But which exact typed Operation instance and parameters are to be used?