From 44861dcbfeee041223c4aac1ee075e92fa4daa01 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 18 Sep 2016 12:42:15 +0200 Subject: update --- eigen/doc/snippets/Cwise_product.cpp | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 eigen/doc/snippets/Cwise_product.cpp (limited to 'eigen/doc/snippets/Cwise_product.cpp') diff --git a/eigen/doc/snippets/Cwise_product.cpp b/eigen/doc/snippets/Cwise_product.cpp new file mode 100644 index 0000000..714d66d --- /dev/null +++ b/eigen/doc/snippets/Cwise_product.cpp @@ -0,0 +1,4 @@ +Array33i a = Array33i::Random(), b = Array33i::Random(); +Array33i c = a * b; +cout << "a:\n" << a << "\nb:\n" << b << "\nc:\n" << c << endl; + -- cgit v1.2.3