This is the functionality i am trying to achieve in scala
create a list of some numbers .. say (1, 2 ,3 , 4, 5) // this represents 1 document and its features
There will be n such lists with different features.

I want to put this n lists into a matrix. So that later down the line, if I want to do operations on this matrix like matrix transpose, matrix inverse i can do it easily.

Currently I do have the lists ready, but i am not sure how to use the sparseVector and Encoder function of scala as the number of rows for this matrix would be huge (approx 1 million) and columns would be 200000. So performance is also an issue

link|improve this question

50% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You could use a map with a default value to represent a sparse matrix:

val matrix = Map((0, 0) -> 1, (0, 1) -> 2, (30, 4) -> 3).withDefaultValue(0)

If only the rows need to be sparse, you can use something like a Vector of Map[Int, Int]s instead.

In general, though, if you care about memory or the performance of matrix operations you're going to be much better off with a library that's been designed to solve this kind of problem. I've been happy with the Colt libraries in the past, but there are a number of other options, like Scalala and JScience.

link|improve this answer
Yes! do you know any functions specific to scalala for Matrix operations or for building matrices – Gaurav Feb 18 at 19:02
can you give an example of scalala MAtrix? – Gaurav Feb 18 at 21:35
@Guarav, the Scalala documentation gives several examples of how to create and manipulate dense matrices. If you need sparse matrices, you're probably far better off going straight to COLT, where the SparseDoubleMatrix2D is very self-explanatory. – Travis Brown Feb 20 at 16:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.