aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples/Cwise_erfc.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-07-12 16:47:39 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-07-12 16:47:39 +0200
commit9ab35d8ba49275f58e2093ecb0747ebc73c0c378 (patch)
tree368471f223f8b4d6fd3d753abb7ed0349a7ddbde /doc/examples/Cwise_erfc.cpp
parent19614497aebd1fa26c1e826e8caaf5c3e16ccd36 (diff)
Fix compilation of doc
Diffstat (limited to 'doc/examples/Cwise_erfc.cpp')
-rw-r--r--doc/examples/Cwise_erfc.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/examples/Cwise_erfc.cpp b/doc/examples/Cwise_erfc.cpp
new file mode 100644
index 000000000..d8bb04c30
--- /dev/null
+++ b/doc/examples/Cwise_erfc.cpp
@@ -0,0 +1,9 @@
+#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;
+}