Sign in
third-party-mirror
/
eigen
/
941ca8d83f776b9a07153d3abef2877907aa0555
/
.
/
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
;
}