Using Math.Net Numerics, how can I index parts of a matrix?
For example, I have a collection of ints and I want to get a submatrix with the rows and columns chosen accordingly.
A[2:3,2:3]
should give me that 2 x 2 submatrix of A where the row index and the column index is either 2 or 3