factory Matrix.concat(Matrix a, Matrix b) { final result = Matrix.create(); result.setConcat(a, b); return result; }