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