104105106107108109110111112113114
public void fill( DoubleMatrix<Columns, Rows> map, double[][] values ) { for( int i = 0; i < values.length; i++ ) { double[] v = values[i]; Rows r = rs[i]; for( int j = 0; j < v.length; j++ ) { Columns c = cs[j]; map.put( c, r, values[i][j] ); }