mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Added Block Operations tutorial and code examples
This commit is contained in:
15
doc/examples/Tutorial_BlockOperations_colrow.cpp
Normal file
15
doc/examples/Tutorial_BlockOperations_colrow.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <Eigen/Dense>
|
||||
#include <iostream>
|
||||
using namespace Eigen;
|
||||
|
||||
int main()
|
||||
{
|
||||
MatrixXf m(3,3);
|
||||
|
||||
m << 1,2,3,
|
||||
4,5,6,
|
||||
7,8,9;
|
||||
|
||||
std::cout << "2nd Row: "
|
||||
<< m.row(1) << std::endl;
|
||||
}
|
||||
Reference in New Issue
Block a user