Arrayz.fillNormal(mm3,101);
doGenericTests(mm3);
doGenericTests(mm3.subMatrix(1, 1, 1, 1));
// 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);
// 1x0 matrix should work
mmn=new VectorMatrixMN(1 ,0);
doGenericTests(mmn);
// square M*M matrix
mmn=new VectorMatrixMN(6 ,6);
doGenericTests(mmn);
}