Your API is a great work. thank you.
By making some data imports with the put function and ranges I found some bug. If I understood the function put(Range rs, Range cs, DoubleMatrix x) correctly they should in the first loop something like „cs.reset();“ otherwise only the first row would be inserted.
/* Put a matrix into specified indices. /
public DoubleMatrix put(Range rs, Range cs, DoubleMatrix x) {
rs.init(0, rows);
cs.init(0, columns);
Hello mikkiobraun
Your API is a great work. thank you. By making some data imports with the put function and ranges I found some bug. If I understood the function put(Range rs, Range cs, DoubleMatrix x) correctly they should in the first loop something like „cs.reset();“ otherwise only the first row would be inserted.
/* Put a matrix into specified indices. / public DoubleMatrix put(Range rs, Range cs, DoubleMatrix x) { rs.init(0, rows); cs.init(0, columns);