Going through the matrix options right now, there seems to be only two options to fill a matrix: ``` cpp // by vector NumericVector x = NumericVector(100, 2.0); y = NumericMatrix(10, 10, v.begin()); // using stl NumericMatrix z(10,10); std::fill(z.begin, z.end(), 2.0); ``` However, as indicated by option using a vector, it would be nice to be able to immediately specify the fill value within the constructor: ``` cpp // proposed addition NumericMatrix z2(10, 10, 2.0); ```