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
3535 * [[org.apache.spark.mllib.stat.MultivariateStatisticalSummary ]]
3636 * together with add() and merge() function.
3737 * 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 ]].
3939 * Zero elements (including explicit zero values) are skipped when calling add() and merge(),
4040 * to have time complexity O(nnz) instead of O(n) for each column.
4141 */
@@ -204,7 +204,7 @@ class RowMatrix(
204204 /**
205205 * Multiplies the Gramian matrix `A^T A` by a dense vector on the right without computing `A^T A`.
206206 *
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
208208 * @return a dense vector representing the product
209209 */
210210 private [mllib] def multiplyGramianMatrixBy (v : BDV [Double ]): BDV [Double ] = {
You can’t perform that action at this time.
0 commit comments