Sign in
third-party-mirror
/
eigen
/
cb436af996b7c2531dead7746905380bc216900f
/
.
/
doc
/
examples
/
Cwise_erf.cpp
blob: 598c18cac783019f2f877a906ae7722c39f80664 [
file
] [
log
] [
blame
]
#include
<
Eigen
/
Core
>
#include
<
unsupported
/
Eigen
/
SpecialFunctions
>
#include
<iostream>
int
main
()
{
Eigen
::
Array4d
v
(-
0.5
,
2
,
0
,
-
7
);
std
::
cout
<<
v
.
erf
()
<<
std
::
endl
;
}