/external/eigen/doc/snippets/ |
MatrixBase_block_int_int.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here is m.block<2,2>(1,1):" << endl << m.block<2,2>(1,1) << endl;
|
MatrixBase_block_int_int_int_int.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here is m.block(1, 1, 2, 2):" << endl << m.block(1, 1, 2, 2) << endl;
|
MatrixBase_bottomLeftCorner_int_int.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here is m.bottomLeftCorner(2, 2):" << endl;
|
MatrixBase_bottomRightCorner_int_int.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here is m.bottomRightCorner(2, 2):" << endl;
|
MatrixBase_bottomRows_int.cpp | 2 cout << "Here is the array a:" << endl << a << endl; 3 cout << "Here is a.bottomRows(2):" << endl;
|
MatrixBase_diagonal_int.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here are the coefficients on the 1st super-diagonal and 2nd sub-diagonal of m:" << endl
|
MatrixBase_diagonal_template_int.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here are the coefficients on the 1st super-diagonal and 2nd sub-diagonal of m:" << endl
|
MatrixBase_end_int.cpp | 2 cout << "Here is the vector v:" << endl << v << endl; 3 cout << "Here is v.tail(2):" << endl << v.tail(2) << endl;
|
MatrixBase_leftCols_int.cpp | 2 cout << "Here is the array a:" << endl << a << endl; 3 cout << "Here is a.leftCols(2):" << endl;
|
MatrixBase_rightCols_int.cpp | 2 cout << "Here is the array a:" << endl << a << endl; 3 cout << "Here is a.rightCols(2):" << endl;
|
MatrixBase_segment_int_int.cpp | 2 cout << "Here is the vector v:" << endl << v << endl; 3 cout << "Here is v.segment(1, 2):" << endl << v.segment(1, 2) << endl;
|
MatrixBase_start_int.cpp | 2 cout << "Here is the vector v:" << endl << v << endl; 3 cout << "Here is v.head(2):" << endl << v.head(2) << endl;
|
MatrixBase_template_int_bottomRows.cpp | 2 cout << "Here is the array a:" << endl << a << endl; 3 cout << "Here is a.bottomRows<2>():" << endl;
|
MatrixBase_template_int_end.cpp | 2 cout << "Here is the vector v:" << endl << v << endl; 3 cout << "Here is v.tail(2):" << endl << v.tail<2>() << endl;
|
MatrixBase_template_int_int_bottomLeftCorner.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here is m.bottomLeftCorner<2,2>():" << endl;
|
MatrixBase_template_int_int_bottomRightCorner.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here is m.bottomRightCorner<2,2>():" << endl;
|
MatrixBase_template_int_int_topLeftCorner.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here is m.topLeftCorner<2,2>():" << endl;
|
MatrixBase_template_int_int_topRightCorner.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here is m.topRightCorner<2,2>():" << endl;
|
MatrixBase_template_int_leftCols.cpp | 2 cout << "Here is the array a:" << endl << a << endl; 3 cout << "Here is a.leftCols<2>():" << endl;
|
MatrixBase_template_int_rightCols.cpp | 2 cout << "Here is the array a:" << endl << a << endl; 3 cout << "Here is a.rightCols<2>():" << endl;
|
MatrixBase_template_int_segment.cpp | 2 cout << "Here is the vector v:" << endl << v << endl; 3 cout << "Here is v.segment<2>(1):" << endl << v.segment<2>(1) << endl;
|
MatrixBase_template_int_start.cpp | 2 cout << "Here is the vector v:" << endl << v << endl; 3 cout << "Here is v.head(2):" << endl << v.head<2>() << endl;
|
MatrixBase_template_int_topRows.cpp | 2 cout << "Here is the array a:" << endl << a << endl; 3 cout << "Here is a.topRows<2>():" << endl;
|
MatrixBase_topLeftCorner_int_int.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here is m.topLeftCorner(2, 2):" << endl;
|
MatrixBase_topRightCorner_int_int.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here is m.topRightCorner(2, 2):" << endl;
|