Skip to content

Commit

Permalink
MAHOUT-1693: FunctionalMatrixView materializes row vectors in scala s…
Browse files Browse the repository at this point in the history
…hell closes apache#120
  • Loading branch information
andrewpalumbo committed Apr 21, 2015
1 parent 435dd49 commit 8be44ab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ Mahout Change Log

Release 0.11.0 - unreleased

MAHOUT-1693: FunctionalMatrixView materializes row vectors in scala shell (apalumbo)

MAHOUT-1680: Renamed mahout-distribution to apache-mahout-distribution

Release 0.10.0 - 2015-04-11
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,9 @@ public Vector viewRow(int row) {
public Vector viewColumn(int column) {
return new MatrixVectorView(this, 0, column, 1, 0, denseLike);
}

@Override
public String toString(){
return "org.apache.mahout.math.FunctionalMatrixView";
}
}

0 comments on commit 8be44ab

Please sign in to comment.