525526527528529530531532533534535
// general M*N matrix VectorMatrixMN mmn=new VectorMatrixMN(6 ,7); randomise(mmn); doGenericTests(mmn); doGenericTests(mmn.subMatrix(1, 4, 1, 5)); // small 2*2 matrix mmn=new VectorMatrixMN(2,2); doGenericTests(mmn);