Sign in
eigen
/
mirror
/
7e0972963edfa2cd4bcb3be56aa1f6e7cc9293cd
/
.
/
doc
/
snippets
/
MatrixBase_setRandom.cpp
blob: 9376476bd7083864c1da6788824110f06e16c4e6 [
file
]
// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
Matrix4i
m
=
Matrix4i
::
Zero
();
m
.
col
(
1
).
setRandom
();
cout
<<
m
<<
endl
;