Skip to content

Commit

Permalink
documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
rezazadeh committed Mar 20, 2014
1 parent e2667d4 commit b025ab2
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions mllib/src/main/scala/org/apache/spark/mllib/linalg/SVD.scala
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ class SVD {
* a simple array for sigma, and a dense 2d matrix array for V
*
* @param matrix dense matrix to factorize
* @param k Recover k singular values and vectors
* @return Three matrices: U, S, V such that A = USV^T
*/
private def denseSVD(matrix: RDD[Array[Double]]) :
Expand Down Expand Up @@ -266,8 +265,6 @@ class SVD {
* SparseMatrix class
*
* @param matrix sparse matrix to factorize
* @param k Recover k singular values and vectors
* @param computeU gives the option of skipping the U computation
* @return Three sparse matrices: U, S, V such that A = USV^T
*/
private def sparseSVD(matrix: SparseMatrix): MatrixSVD = {
Expand Down

0 comments on commit b025ab2

Please sign in to comment.