The latest release of spark uses breeze for vectors.
There are no operations available for adding the vectors org.apache.spark.mllib.linalg.Vector
I need to convert them to arrays and add.But the efficiency is lost.
In the source code of spark the vectors are converted to breeze vector (breeze.linalg.Vector) by toBreeze function and then added.
But toBreeze is a private function and cant be used. So what is the best method to add vectors? Please help ..