aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-12-27 16:35:25 +0000
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-12-27 16:35:25 +0000
commit657013c9743d9774d2fbb227b16e575b2f1ac2b0 (patch)
treec393a7a1a1f71cdc73b69c0f7e27064a282cb0d3 /doc/examples
parent265e1ef4ef4e44d9b3e69040d84044c19b60370b (diff)
Mention ptr_fun in docs for .unaryExpr()
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/class_CwiseUnaryOp_ptrfun.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/examples/class_CwiseUnaryOp_ptrfun.cpp b/doc/examples/class_CwiseUnaryOp_ptrfun.cpp
new file mode 100644
index 000000000..36706d8ed
--- /dev/null
+++ b/doc/examples/class_CwiseUnaryOp_ptrfun.cpp
@@ -0,0 +1,20 @@
+#include <Eigen/Core>
+#include <iostream>
+using namespace Eigen;
+using namespace std;
+
+// define function to be applied coefficient-wise
+double ramp(double x)
+{
+ if (x > 0)
+ return x;
+ else
+ return 0;
+}
+
+int main(int, char**)
+{
+ Matrix4d m1 = Matrix4d::Random();
+ cout << m1 << endl << "becomes: " << endl << m1.unaryExpr(ptr_fun(ramp)) << endl;
+ return 0;
+}