Add DoubleMatrix and IntegerMatrix for clean separation of numeric methods
- Numeric methods such as
Multiply
andNonZeros
are not possible to implement in the generic classMatrix
using C# generics - Solution: Move code that requires numeric calculations (e.g. multiplication, zero values) to separate classes
- In the future we will probably move
ToMatrixMarketString
to theMatrixMarketWriter
class