Sign in
◑
Theme
eigen
/
mirror
/
738bdb3c29fc967d9f4315ed77463ecb83ff2a70
/
.
/
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
;