aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples/Tutorial_BlockOperations_block_assignment.cpp
diff options
context:
space:
mode:
authorGravatar Carlos Becker <carlosbecker@gmail.com>2010-06-28 18:42:59 +0100
committerGravatar Carlos Becker <carlosbecker@gmail.com>2010-06-28 18:42:59 +0100
commit97889a7f465bda06ae7617f5f2d8fe31cf1dce68 (patch)
tree442bc6b75e7e90c2463963a6ffabc23d9f1fd6d0 /doc/examples/Tutorial_BlockOperations_block_assignment.cpp
parent82e2e8b13a9c1bc59ec7f1c4618e83bd971c4123 (diff)
Added Block Operations tutorial and code examples
Diffstat (limited to 'doc/examples/Tutorial_BlockOperations_block_assignment.cpp')
-rw-r--r--doc/examples/Tutorial_BlockOperations_block_assignment.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/examples/Tutorial_BlockOperations_block_assignment.cpp b/doc/examples/Tutorial_BlockOperations_block_assignment.cpp
new file mode 100644
index 000000000..0419a500f
--- /dev/null
+++ b/doc/examples/Tutorial_BlockOperations_block_assignment.cpp
@@ -0,0 +1,31 @@
+#include <Eigen/Dense>
+#include <iostream>
+
+using namespace std;
+using namespace Eigen;
+
+int main()
+{
+ MatrixXf m(3,3), n(2,2);
+
+ m << 1,2,3,
+ 4,5,6,
+ 7,8,9;
+
+ // assignment through a block operation,
+ // block as rvalue
+ n = m.block(0,0,2,2);
+
+ //print n
+ cout << "n = " << endl << n << endl << endl;
+
+
+ n << 1,1,
+ 1,1;
+
+ // block as lvalue
+ m.block(0,0,2,2) = n;
+
+ //print m
+ cout << "m = " << endl << m << endl;
+}