343344345346347348349
throw new SizeException("Matrix does not have the necessary length (" + length + " != " + l + ")."); } private void checkRows(int r) { if (rows != r) throw new SizeException("Matrix does not have the necessary length (" + length + " != " + r + ")."); }