Sign in
eigen
/
mirror
/
27d8f29be38a7ef9a1d3bfd82f0a8dbf16ac0a7c
/
.
/
doc
/
examples
/
Cwise_erfc.cpp
blob: 4b7902c6f26daf1eec66da428a952c0b704fff2d [
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
;
}