March 7th, 2012, 10:29 am
QuoteOriginally posted by: quantmehQuoteOriginally posted by: katastrofaTo be honest, I think a good linear algebra library in Java should give up on object orientation. why would you need OO in linear algebra?One reason is that it's easier to pass the object representing a matrix around, instead of separately the data pointer, row size and column size (what if you confuse their order?).But the penalty Java makes you pay for this is so huge, that I'd prefer to send a nice plain double[] array and the size separately.