aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/Cwise_array_power_array.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/snippets/Cwise_array_power_array.cpp')
-rw-r--r--doc/snippets/Cwise_array_power_array.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/snippets/Cwise_array_power_array.cpp b/doc/snippets/Cwise_array_power_array.cpp
new file mode 100644
index 000000000..432a76ee5
--- /dev/null
+++ b/doc/snippets/Cwise_array_power_array.cpp
@@ -0,0 +1,4 @@
+Array<double,1,3> x(8,25,3),
+ e(1./3.,0.5,2.);
+cout << "[" << x << "]^[" << e << "] = " << x.pow(e) << endl; // using ArrayBase::pow
+cout << "[" << x << "]^[" << e << "] = " << pow(x,e) << endl; // using Eigen::pow