File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
mllib/src/main/scala/org/apache/spark/mllib/linalg/distributed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ import org.apache.spark.mllib.stat.MultivariateStatisticalSummary
35
35
* [[org.apache.spark.mllib.stat.MultivariateStatisticalSummary ]]
36
36
* together with add() and merge() function.
37
37
* A numerically stable algorithm is implemented to compute sample mean and variance:
38
- * [[http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance variance-wiki ]].
38
+ * [[http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance variance-wiki ]].
39
39
* Zero elements (including explicit zero values) are skipped when calling add() and merge(),
40
40
* to have time complexity O(nnz) instead of O(n) for each column.
41
41
*/
@@ -204,7 +204,7 @@ class RowMatrix(
204
204
/**
205
205
* Multiplies the Gramian matrix `A^T A` by a dense vector on the right without computing `A^T A`.
206
206
*
207
- @param v a dense vector whose length must match the number of columns of this matrix
207
+ * @param v a dense vector whose length must match the number of columns of this matrix
208
208
* @return a dense vector representing the product
209
209
*/
210
210
private [mllib] def multiplyGramianMatrixBy (v : BDV [Double ]): BDV [Double ] = {
You can’t perform that action at this time.
0 commit comments