HomeSort by relevance Sort by last modified time
    Searched refs:cout (Results 201 - 225 of 586) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/eigen/unsupported/doc/examples/
PolynomialSolver1.cpp 13 cout << "Roots: " << roots.transpose() << endl;
18 cout << "Complex roots: " << psolve.roots().transpose() << endl;
23 cout << "Real roots: " << mapRR.transpose() << endl;
25 cout << endl;
26 cout << "Illustration of the convergence problem with the QR algorithm: " << endl;
27 cout << "---------------------------------------------------------------" << endl;
31 cout << "Hard case polynomial defined by floats: " << hardCase_polynomial.transpose() << endl;
33 cout << "Complex roots: " << psolvef.roots().transpose() << endl;
36 cout << "Norms of the evaluations of the polynomial at the roots: " << evals.transpose() << endl << endl;
38 cout << "Using double's almost always solves the problem for small degrees: " << endl
    [all...]
  /frameworks/base/tools/aapt/tests/
FileFinder_test.cpp 18 using std::cout;
26 cout << "\n\n STARTING FILE FINDER TESTS" << endl;
51 cout << "Checking DirectoryWalker...";
53 cout << "PASSED" << endl;
56 cout << "Running findFiles()...";
59 cout << "PASSED" << endl;
63 cout << "Running size comparison: Size is " << testStorage.size() << ", ";
64 cout << "Expected " << SIZE_EXPECTED << "...";
66 cout << "PASSED" << endl;
68 cout << "FAILED" << endl
    [all...]
  /external/eigen/doc/examples/
TutorialLinAlgExSolveColPivHouseholderQR.cpp 13 cout << "Here is the matrix A:\n" << A << endl;
14 cout << "Here is the vector b:\n" << b << endl;
16 cout << "The solution is:\n" << x << endl;
TutorialLinAlgExSolveLDLT.cpp 12 cout << "Here is the matrix A:\n" << A << endl;
13 cout << "Here is the right hand side b:\n" << b << endl;
15 cout << "The solution is:\n" << x << endl;
TutorialLinAlgSVDSolve.cpp 10 cout << "Here is the matrix A:\n" << A << endl;
12 cout << "Here is the right hand side b:\n" << b << endl;
13 cout << "The least-squares solution is:\n"
TutorialLinAlgSelfAdjointEigenSolver.cpp 11 cout << "Here is the matrix A:\n" << A << endl;
14 cout << "The eigenvalues of A are:\n" << eigensolver.eigenvalues() << endl;
15 cout << "Here's a matrix whose columns are eigenvectors of A \n"
Tutorial_BlockOperations_corner.cpp 13 cout << "m.leftCols(2) =" << endl << m.leftCols(2) << endl << endl;
14 cout << "m.bottomRows<2>() =" << endl << m.bottomRows<2>() << endl << endl;
16 cout << "After assignment, m = " << endl << m << endl;
Tutorial_BlockOperations_vector.cpp 10 cout << "v.head(3) =" << endl << v.head(3) << endl << endl;
11 cout << "v.tail<3>() = " << endl << v.tail<3>() << endl << endl;
13 cout << "after 'v.segment(1,4) *= 2', v =" << endl << v << endl;
Tutorial_PartialLU_solve.cpp 14 cout << "Here is the matrix A:" << endl << A << endl;
15 cout << "Here is the vector b:" << endl << b << endl;
17 cout << "The solution is:" << endl << x << endl;
tut_arithmetic_dot_cross.cpp 11 cout << "Dot product: " << v.dot(w) << endl;
13 cout << "Dot product via a matrix product: " << dp << endl;
14 cout << "Cross product:\n" << v.cross(w) << endl;
  /external/eigen/doc/snippets/
ColPivHouseholderQR_solve.cpp 3 cout << "Here is the matrix m:" << endl << m << endl;
4 cout << "Here is the matrix y:" << endl << y << endl;
8 cout << "Here is a solution x to the equation mx=y:" << endl << x << endl;
FullPivHouseholderQR_solve.cpp 3 cout << "Here is the matrix m:" << endl << m << endl;
4 cout << "Here is the matrix y:" << endl << y << endl;
8 cout << "Here is a solution x to the equation mx=y:" << endl << x << endl;
FullPivLU_kernel.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
4 cout << "Here is a matrix whose columns form a basis of the kernel of m:"
6 cout << "By definition of the kernel, m*ker is zero:"
MatrixBase_colwise.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the sum of each column:" << endl << m.colwise().sum() << endl;
4 cout << "Here is the maximum absolute value of each column:"
MatrixBase_computeInverseWithCheck.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
7 cout << "It is invertible, and its inverse is:" << endl << inverse << endl;
10 cout << "It is not invertible." << endl;
MatrixBase_fixedBlock_int_int.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
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;
MatrixBase_rowwise.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the sum of each row:" << endl << m.rowwise().sum() << endl;
4 cout << "Here is the maximum absolute value of each row:"
MatrixBase_set.cpp 5 cout << m1 << endl << endl;
8 cout << m2 << endl << endl;
13 cout << m2 << endl;
SelfAdjointEigenSolver_operatorSqrt.cpp 3 cout << "Here is a random positive-definite matrix, A:" << endl << A << endl << endl;
7 cout << "The square root of A is: " << endl << sqrtA << endl;
8 cout << "If we square this, we get: " << endl << sqrtA*sqrtA << endl;
Tridiagonalization_packedMatrix.cpp 3 cout << "Here is a random symmetric 4x4 matrix:" << endl << A << endl;
6 cout << "The packed matrix M is:" << endl << pm << endl;
7 cout << "The diagonal and subdiagonal corresponds to the matrix T, which is:"
Tutorial_AdvancedInitialization_Join.cpp 3 std::cout << "vec1 = " << vec1 << std::endl;
7 std::cout << "vec2 = " << vec2 << std::endl;
11 std::cout << "joined = " << joined << std::endl;
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;
5 cout << "Row-major using stride:\n" <<
Tutorial_solve_singular.cpp 5 cout << "Here is the matrix A:" << endl << A << endl;
6 cout << "Here is the vector b:" << endl << b << endl;
9 cout << "The solution is:" << endl << x << endl;
Tutorial_solve_triangular.cpp 5 cout << "Here is the matrix A:" << endl << A << endl;
6 cout << "Here is the vector b:" << endl << b << endl;
8 cout << "The solution is:" << endl << x << endl;
  /external/eigen/bench/
check_cache_queries.cpp 13 std::cout << "The code " << CODE << " gives " \
20 cout << "Eigen's L1 = " << internal::queryL1CacheSize() << endl;
21 cout << "Eigen's L2/L3 = " << internal::queryTopLevelCacheSize() << endl;
24 cout << "Eigen's L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl;
38 cout << endl;
39 cout << "vendor id = " << string_char << endl;
40 cout << endl;
44 cout << "Eigen's intel codes L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl;
48 cout << "Eigen's intel direct L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl;
51 cout << "Eigen's amd L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl
    [all...]

Completed in 91 milliseconds

1 2 3 4 5 6 7 891011>>