aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/Cwise_scalar_power_array.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/snippets/Cwise_scalar_power_array.cpp')
-rw-r--r--doc/snippets/Cwise_scalar_power_array.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/snippets/Cwise_scalar_power_array.cpp b/doc/snippets/Cwise_scalar_power_array.cpp
new file mode 100644
index 000000000..c968b2c84
--- /dev/null
+++ b/doc/snippets/Cwise_scalar_power_array.cpp
@@ -0,0 +1,2 @@
+Array<double,1,3> e(2,-3,1./3.);
+cout << "10^[" << e << "] = " << pow(10,e) << endl;