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:
24
doc/examples/Tutorial_BlockOperations_vector.cpp
Normal file
24
doc/examples/Tutorial_BlockOperations_vector.cpp
Normal file
@@ -0,0 +1,24 @@
|
||||
#include <Eigen/Dense>
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
using namespace Eigen;
|
||||
|
||||
int main()
|
||||
{
|
||||
VectorXf v(6);
|
||||
|
||||
v << 1, 2, 3, 4, 5, 6;
|
||||
|
||||
//print first three elements
|
||||
cout << "-- head(3) --" << endl
|
||||
<< v.head(3) << endl << endl;
|
||||
|
||||
//print last three elements
|
||||
cout << "-- tail(3) --" << endl
|
||||
<< v.tail(3) << endl << endl;
|
||||
|
||||
//print between 2nd and 5th elem. inclusive
|
||||
cout << "-- segment(1,4) --" << endl
|
||||
<< v.segment(1,4) << endl;
|
||||
}
|
||||
Reference in New Issue
Block a user