mat A(5, 6);
-A.fill(123.0);
+
+A.fill(123.0); // or: mat A(5, 6, fill::value(123.0));
-Note: to explicitly set all elements to zero during object construction, use the following more compact form:
+Note: to set all elements to zero during matrix construction, use the following more compact form: