Sign in
nest-open-source
/
nest-cam
/
v366
/
eigen
/
9d75fdbcd2b5a2fdab03a859ddefda95ce1217ed
/
.
/
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
;
}