Sign in
eigen
/
mirror
/
7e0972963edfa2cd4bcb3be56aa1f6e7cc9293cd
/
.
/
doc
/
snippets
/
Cwise_ceil.cpp
blob: caec7f9b2dbb0af9a9909cc7c9c4b32632829d42 [
file
]
// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
ArrayXd
v
=
ArrayXd
::
LinSpaced
(
7
,
-
2
,
2
);
cout
<<
v
<<
endl
<<
endl
;
cout
<<
ceil
(
v
)
<<
endl
;