There was Update method in Spark 1.3.1
https://spark.apache.org/docs/1.3.1/api/java/org/apache/spark/mllib/linalg/DenseMatrix.html
But in Spark 1.6.0, there is no Update method
https://spark.apache.org/docs/1.6.0/api/java/org/apache/spark/mllib/linalg/DenseMatrix.html
My idea is to store large set of elements in a distributed matrix and perform operation on that, How to update values in DenseMatrix ??
Any example or suggestions are welcome!