Searched refs:endl (Results 76 - 100 of 636) sorted by relevance

1234567891011>>

/external/eigen/doc/snippets/
H A DHessenbergDecomposition_packedMatrix.cpp2 cout << "Here is a random 4x4 matrix:" << endl << A << endl; variable
5 cout << "The packed matrix M is:" << endl << pm << endl; variable
7 << endl << hessOfA.matrixH() << endl;
9 cout << "The vector of Householder coefficients is:" << endl << hc << endl; variable
H A DMatrixBase_asDiagonal.cpp1 cout << Matrix3i(Vector3i(2,5,6).asDiagonal()) << endl;
H A DTopicStorageOrders_example.cpp5 cout << "The matrix A:" << endl; variable
6 cout << Acolmajor << endl << endl; variable
8 cout << "In memory (column-major):" << endl; variable
11 cout << endl << endl; variable
14 cout << "In memory (row-major):" << endl; variable
17 cout << endl; variable
H A DColPivHouseholderQR_solve.cpp3 cout << "Here is the matrix m:" << endl << m << endl; variable
4 cout << "Here is the matrix y:" << endl << y << endl; variable
8 cout << "Here is a solution x to the equation mx=y:" << endl << x << endl; variable
H A DFullPivHouseholderQR_solve.cpp3 cout << "Here is the matrix m:" << endl << m << endl; variable
4 cout << "Here is the matrix y:" << endl << y << endl; variable
8 cout << "Here is a solution x to the equation mx=y:" << endl << x << endl; variable
H A DFullPivLU_kernel.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
5 << endl << ker << endl; variable
7 << endl << m*ker << endl; variable
H A DMatrixBase_applyOnTheRight.cpp5 cout << "At start, A = " << endl << A << endl; variable
7 cout << "After A *= B, A = " << endl << A << endl; variable
9 cout << "After applyOnTheRight, A = " << endl << A << endl; variable
H A DMatrixBase_bottomLeftCorner_int_int.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is m.bottomLeftCorner(2, 2):" << endl; variable
4 cout << m.bottomLeftCorner(2, 2) << endl;
6 cout << "Now the matrix m is:" << endl << m << endl; variable
H A DMatrixBase_bottomRightCorner_int_int.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is m.bottomRightCorner(2, 2):" << endl; variable
4 cout << m.bottomRightCorner(2, 2) << endl;
6 cout << "Now the matrix m is:" << endl << m << endl; variable
H A DMatrixBase_bottomRows_int.cpp2 cout << "Here is the array a:" << endl << a << endl; variable
3 cout << "Here is a.bottomRows(2):" << endl; variable
4 cout << a.bottomRows(2) << endl;
6 cout << "Now the array a is:" << endl << a << endl; variable
H A DMatrixBase_colwise.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is the sum of each column:" << endl << m.colwise().sum() << endl;
5 << endl << m.cwiseAbs().colwise().maxCoeff() << endl;
H A DMatrixBase_computeInverseAndDetWithCheck.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
7 cout << "Its determinant is " << determinant << endl; variable
9 cout << "It is invertible, and its inverse is:" << endl << inverse << endl; variable
12 cout << "It is not invertible." << endl; variable
H A DMatrixBase_fixedBlock_int_int.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is m.fixed<2, 2>(2, 2):" << endl << m.block<2, 2>(2, 2) << endl;
5 cout << "Now the matrix m is:" << endl << m << endl; variable
H A DMatrixBase_isOrthogonal.cpp3 cout << "Here's the vector v:" << endl << v << endl; variable
4 cout << "Here's the vector w:" << endl << w << endl; variable
5 cout << "v.isOrthogonal(w) returns: " << v.isOrthogonal(w) << endl;
6 cout << "v.isOrthogonal(w,1e-3) returns: " << v.isOrthogonal(w,1e-3) << endl;
H A DMatrixBase_leftCols_int.cpp2 cout << "Here is the array a:" << endl << a << endl; variable
3 cout << "Here is a.leftCols(2):" << endl; variable
4 cout << a.leftCols(2) << endl;
6 cout << "Now the array a is:" << endl << a << endl; variable
H A DMatrixBase_rightCols_int.cpp2 cout << "Here is the array a:" << endl << a << endl; variable
3 cout << "Here is a.rightCols(2):" << endl; variable
4 cout << a.rightCols(2) << endl;
6 cout << "Now the array a is:" << endl << a << endl; variable
H A DMatrixBase_rowwise.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is the sum of each row:" << endl << m.rowwise().sum() << endl;
5 << endl << m.cwiseAbs().rowwise().maxCoeff() << endl;
H A DMatrixBase_template_int_bottomRows.cpp2 cout << "Here is the array a:" << endl << a << endl; variable
3 cout << "Here is a.bottomRows<2>():" << endl; variable
4 cout << a.bottomRows<2>() << endl;
6 cout << "Now the array a is:" << endl << a << endl; variable
H A DMatrixBase_template_int_int_block_int_int_int_int.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is the block:" << endl << m.block<2, Dynamic>(1, 1, 2, 3) << endl;
5 cout << "Now the matrix m is:" << endl << m << endl; variable
H A DMatrixBase_template_int_int_bottomLeftCorner.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is m.bottomLeftCorner<2,2>():" << endl; variable
4 cout << m.bottomLeftCorner<2,2>() << endl;
6 cout << "Now the matrix m is:" << endl << m << endl; variable
H A DMatrixBase_template_int_int_bottomLeftCorner_int_int.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is m.bottomLeftCorner<2,Dynamic>(2,2):" << endl; variable
4 cout << m.bottomLeftCorner<2,Dynamic>(2,2) << endl;
6 cout << "Now the matrix m is:" << endl << m << endl; variable
H A DMatrixBase_template_int_int_bottomRightCorner.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is m.bottomRightCorner<2,2>():" << endl; variable
4 cout << m.bottomRightCorner<2,2>() << endl;
6 cout << "Now the matrix m is:" << endl << m << endl; variable
H A DMatrixBase_template_int_int_bottomRightCorner_int_int.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is m.bottomRightCorner<2,Dynamic>(2,2):" << endl; variable
4 cout << m.bottomRightCorner<2,Dynamic>(2,2) << endl;
6 cout << "Now the matrix m is:" << endl << m << endl; variable
/external/eigen/doc/examples/
H A DTutorial_BlockOperations_print_block.cpp13 cout << "Block in the middle" << endl; local
14 cout << m.block<2,2>(1,1) << endl << endl; local
17 cout << "Block of size " << i << "x" << i << endl; local
18 cout << m.block(0,0,i,i) << endl << endl; local
H A DTutorial_PartialLU_solve.cpp14 cout << "Here is the matrix A:" << endl << A << endl; local
15 cout << "Here is the vector b:" << endl << b << endl; local
17 cout << "The solution is:" << endl << x << endl; local

Completed in 145 milliseconds

1234567891011>>