Sign in
◑
Theme
eigen
/
mirror
/
refs/heads/cuda-sm60-arch-floor
/
.
/
doc
/
snippets
/
Matrix_setConstant_int_int.cpp
blob: d4f5e1902bb048aff6cdd033a65af0b4463fd686 [
file
] [
edit
]
// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
MatrixXf
m
;
m
.
setConstant
(
3
,
3
,
5
);
cout
<<
m
<<
endl
;