Sign in
eigen
/
mirror
/
63185be8b240ee1a9ef476af2fc06676d3d89fe0
/
.
/
doc
/
examples
/
Cwise_erfc.cpp
blob: d8bb04c307631ef0d5a02d91179dcd2f46bfe07f [
file
] [
log
] [
blame
]
#include
<
Eigen
/
Core
>
#include
<
unsupported
/
Eigen
/
SpecialFunctions
>
#include
<iostream>
using
namespace
Eigen
;
int
main
()
{
Array4d
v
(-
0.5
,
2
,
0
,-
7
);
std
::
cout
<<
v
.
erfc
()
<<
std
::
endl
;
}