Sign in
eigen
/
mirror
/
7e0972963edfa2cd4bcb3be56aa1f6e7cc9293cd
/
.
/
doc
/
snippets
/
Cwise_sinh.cpp
blob: 50ea4b3204742d579e07ed2bd5c389eedc62a21e [
file
]
// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
ArrayXd
v
=
ArrayXd
::
LinSpaced
(
5
,
0
,
1
);
cout
<<
sinh
(
v
)
<<
endl
;