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