Sign in
eigen
/
mirror
/
6f9c2abf31a8f7201edea230f09389c4569291e2
/
.
/
doc
/
snippets
/
Matrix_setConstant_int_int.cpp
blob: d4f5e1902bb048aff6cdd033a65af0b4463fd686 [
file
]
// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
MatrixXf
m
;
m
.
setConstant
(
3
,
3
,
5
);
cout
<<
m
<<
endl
;