Copy-assigns a default-constructed element, assumed to represent zero, to all elements of the specified matrix.
- Template Parameters
-
ValueType | A type of a matrix element. |
- Parameters
-
[in,out] | column_matrix | The matrix assign to. |
| columns | A number of columns in the assignee matrix pointed to by column_matrix . |
| rows | A number of rows in the assignee matrix pointed to by column_matrix . |
The new matrix value is assigned to the matrix pointed to by column_matrix
, that is assignment of elements is invoked rather than the construction. To construct a new matrix in uninitialized space use construct_zero_matrix.