Hi,
Does anyone know how to return a submatrix from another one? E.g. a 3xn from an nxn.
What I've done is I've defined an 10x10 matrix using pointers. I can access the array elements using the standard notation - A[0][0] - and I can access the first row with A[0]. Is there any way of...