From f0238cfb6997c4acfc2bd200de7295f3fa36968f Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 3 Mar 2019 21:09:10 +0100 Subject: don't index Eigen --- .../Tutorial_BlockOperations_block_assignment.cpp | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 eigen/doc/examples/Tutorial_BlockOperations_block_assignment.cpp (limited to 'eigen/doc/examples/Tutorial_BlockOperations_block_assignment.cpp') diff --git a/eigen/doc/examples/Tutorial_BlockOperations_block_assignment.cpp b/eigen/doc/examples/Tutorial_BlockOperations_block_assignment.cpp deleted file mode 100644 index 76f49f2..0000000 --- a/eigen/doc/examples/Tutorial_BlockOperations_block_assignment.cpp +++ /dev/null @@ -1,18 +0,0 @@ -#include -#include - -using namespace std; -using namespace Eigen; - -int main() -{ - Array22f m; - m << 1,2, - 3,4; - Array44f a = Array44f::Constant(0.6); - cout << "Here is the array a:" << endl << a << endl << endl; - a.block<2,2>(1,1) = m; - cout << "Here is now a with m copied into its central 2x2 block:" << endl << a << endl << endl; - a.block(0,0,2,3) = a.block(2,1,2,3); - cout << "Here is now a with bottom-right 2x3 block copied into top-left 2x2 block:" << endl << a << endl << endl; -} -- cgit v1.2.3