Sign in
third-party-mirror
/
eigen
/
2571273647cdf6673639ebe9b3aa3237c1e7a822
/
.
/
doc
/
examples
/
Cwise_erfc.cpp
blob: 98b0b75bf54f01503fe501312d80a1ac23e015b5 [
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
.
erfc
()
<<
std
::
endl
;
}