/external/eigen/doc/snippets/ |
Cwise_boolean_and.cpp | 2 cout << ((v<w) && (v<0)) << endl;
|
Cwise_boolean_or.cpp | 2 cout << ((v<w) || (v<0)) << endl;
|
HessenbergDecomposition_compute.cpp | 4 cout << "The matrix H in the decomposition of A is:" << endl << hd.matrixH() << endl; 6 cout << "The matrix H in the decomposition of 2A is:" << endl << hd.matrixH() << endl;
|
MatrixBase_array.cpp | 4 cout << v << endl; variable
|
MatrixBase_col.cpp | 3 cout << m << endl; variable
|
MatrixBase_cwiseAbs.cpp | 4 cout << m.cwiseAbs() << endl;
|
MatrixBase_cwiseAbs2.cpp | 4 cout << m.cwiseAbs2() << endl;
|
MatrixBase_row.cpp | 3 cout << m << endl; variable
|
MatrixBase_setIdentity.cpp | 3 cout << m << endl; variable
|
SelfAdjointEigenSolver_compute_MatrixType2.cpp | 7 cout << "The eigenvalues of the pencil (A,B) are:" << endl << es.eigenvalues() << endl; 9 cout << "The eigenvalues of the pencil (B,A) are:" << endl << es.eigenvalues() << endl;
|
Tridiagonalization_compute.cpp | 5 cout << "The matrix T in the tridiagonal decomposition of A is: " << endl; variable 6 cout << tri.matrixT() << endl; 8 cout << "The matrix T in the tridiagonal decomposition of 2A is: " << endl; variable 9 cout << tri.matrixT() << endl;
|
Tutorial_solve_multiple_rhs.cpp | 7 cout << "The solution with right-hand side (3,3,4) is:" << endl; variable 8 cout << X.col(0) << endl; 9 cout << "The solution with right-hand side (1,1,1) is:" << endl; variable 10 cout << X.col(1) << endl;
|
Tutorial_solve_reuse_decomposition.cpp | 8 cout << "The solution with right-hand side (3,3,4) is:" << endl; variable 9 cout << x << endl; variable 12 cout << "The solution with right-hand side (1,1,1) is:" << endl; variable 13 cout << x << endl; variable
|
MatrixBase_cwiseEqual.cpp | 4 cout << "Comparing m with identity matrix:" << endl; variable 5 cout << m.cwiseEqual(MatrixXi::Identity(2,2)) << endl; 7 cout << "Number of coefficients that are equal: " << count << endl; variable
|
MatrixBase_cwiseNotEqual.cpp | 4 cout << "Comparing m with identity matrix:" << endl; variable 5 cout << m.cwiseNotEqual(MatrixXi::Identity(2,2)) << endl; 7 cout << "Number of coefficients that are not equal: " << count << endl; variable
|
Tutorial_AdvancedInitialization_CommaTemporary.cpp | 2 std::cout << mat << std::endl << std::endl; member in class:std 4 std::cout << mat << std::endl; member in class:std
|
Tutorial_AdvancedInitialization_Join.cpp | 3 std::cout << "vec1 = " << vec1 << std::endl; member in class:std 7 std::cout << "vec2 = " << vec2 << std::endl; member in class:std 11 std::cout << "joined = " << joined << std::endl; member in class:std
|
Tutorial_Map_rowmajor.cpp | 3 cout << "Column-major:\n" << Map<Matrix<int,2,4> >(array) << endl; 4 cout << "Row-major:\n" << Map<Matrix<int,2,4,RowMajor> >(array) << endl; 6 Map<Matrix<int,2,4>, Unaligned, Stride<1,4> >(array) << endl;
|
MatrixBase_marked.cpp | 7 cout << "Here is the matrix m:" << endl << m << endl; 10 cout << "Here is the matrix n:" << endl << n << endl; 12 " m is upper-triangular:" << endl
|
/ndk/tests/device/issue22165-typeinfo/jni/ |
main.cpp | 10 std::cout << "call throw_an_exception()" << std::endl; member in class:std 15 std::cout << "my_exception caught!" << std::endl; 17 std::cout << "ERROR: exception caught!" << std::endl; 21 std::cout << "finished" << std::endl; member in class:std
|
/external/eigen/doc/examples/ |
TutorialLinAlgInverseDeterminant.cpp | 13 cout << "Here is the matrix A:\n" << A << endl; local 14 cout << "The determinant of A is " << A.determinant() << endl; 15 cout << "The inverse of A is:\n" << A.inverse() << endl;
|
class_CwiseUnaryOp_ptrfun.cpp | 18 cout << m1 << endl << "becomes: " << endl << m1.unaryExpr(ptr_fun(ramp)) << endl;
|
TutorialLinAlgComputeTwice.cpp | 13 cout << "Here is the matrix A:\n" << A << endl; local 14 cout << "Here is the right hand side b:\n" << b << endl; local 15 cout << "Computing LLT decomposition..." << endl; local 17 cout << "The solution is:\n" << llt.solve(b) << endl; 19 cout << "The matrix A is now:\n" << A << endl; local 20 cout << "Computing LLT decomposition..." << endl; local 22 cout << "The solution is now:\n" << llt.solve(b) << endl;
|
tut_arithmetic_matrix_mul.cpp | 11 std::cout << "Here is mat*mat:\n" << mat*mat << std::endl; member in class:std 12 std::cout << "Here is mat*u:\n" << mat*u << std::endl; member in class:std 13 std::cout << "Here is u^T*mat:\n" << u.transpose()*mat << std::endl; member in class:std 14 std::cout << "Here is u^T*v:\n" << u.transpose()*v << std::endl; member in class:std 15 std::cout << "Here is u*v^T:\n" << u*v.transpose() << std::endl; member in class:std 16 std::cout << "Let's multiply mat by itself" << std::endl; member in class:std 18 std::cout << "Now mat is mat:\n" << mat << std::endl; member in class:std
|
TemplateKeyword_flexible.cpp | 17 std::cout << "m2 before copy:" << std::endl; member in class:std 18 std::cout << m2 << std::endl << std::endl; member in class:std 20 std::cout << "m2 after copy:" << std::endl; member in class:std 21 std::cout << m2 << std::endl << std::endl; member in class:std
|