|
Fill
Fill an existing matrix or vector with the specified value.
void matrix::Fill(
|
Parameters
value
[in] Value to fill all the matrix elements.
Return Value
No return value. The matrix is filled in place with the specified value.
Example
matrix matrix_a(2,2);
|