Sign in
eigen
/
mirror
/
d271a7d545f83f75755a9c2f20ec5e0e4fe5a8a8
/
.
/
doc
/
examples
/
Cwise_erf.cpp
blob: 9ddc57da3c22e2906d479666ea1710789e22670a [
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
;
}