views:

2

answers:

0

What's the best way to effectively remove a row from an ObjectMatrix2D?

  • Use viewSelection to get all the other rows (is there a simpler way than me building arrays of rows and columns myself?)
  • Transpose all the lower rows up one (docs mention transpose operation but I can't find any code for it)
  • something else?

If it matters I'm currently using the SparseObjectMatrix2D implementation. I'm experimenting with using it as the backing for a spreadsheet-type program. My initial tests show that loading speed and memory usage are good, but maybe there are certain features such as this that it just won't support well.