Skip to content

Commit

Permalink
move IndexedRDDMatrixRow to IndexedRowRDDMatrix
Browse files Browse the repository at this point in the history
  • Loading branch information
mengxr committed Apr 2, 2014
1 parent 0d1491c commit e7d0d4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 23 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
package org.apache.spark.mllib.linalg.rdd

import org.apache.spark.rdd.RDD
import org.apache.spark.mllib.linalg.Vector

/** Represents a row of RowRDDMatrix. */
case class IndexedRDDMatrixRow(index: Long, vector: Vector)

/**
* Represents a row-oriented RDDMatrix with indexed rows.
Expand Down

0 comments on commit e7d0d4a

Please sign in to comment.