Searched defs:endl (Results 201 - 225 of 438) sorted by relevance

1234567891011>>

/external/eigen/doc/examples/
H A DTemplateKeyword_flexible.cpp17 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
H A DTemplateKeyword_simple.cpp15 std::cout << "m2 before copy:" << std::endl; member in class:std
16 std::cout << m2 << std::endl << std::endl; member in class:std
18 std::cout << "m2 after copy:" << std::endl; member in class:std
19 std::cout << m2 << std::endl << std::endl; member in class:std
H A DTutorialLinAlgExComputeSolveError.cpp13 cout << "The relative error is:\n" << relative_error << endl; local
H A Dclass_Block.cpp23 cout << topLeftCorner(4*m, 2, 3) << endl; // calls the const version
25 cout << "Now the matrix m is:" << endl << m << endl; local
H A Dclass_VectorBlock.cpp23 cout << segmentFromRange(2*v, 2, 4) << endl; // calls the const version
25 cout << "Now the vector v is:" << endl << v << endl; local
H A Dfunction_taking_ref.cpp15 cout << "matrix m:" << endl << m << endl << endl; local
16 cout << "inv_cond(m): " << inv_cond(m) << endl;
17 cout << "inv_cond(m(1:3,1:3)): " << inv_cond(m.topLeftCorner(3,3)) << endl;
18 cout << "inv_cond(m+I): " << inv_cond(m+Matrix4f::Identity()) << endl;
H A DTutorial_ReductionsVisitorsBroadcasting_visitors.cpp23 maxRow << "," << maxCol << endl; local
25 minRow << "," << minCol << endl; local
/external/eigen/doc/snippets/
H A DEigenSolver_EigenSolver_MatrixType.cpp2 cout << "Here is a random 6x6 matrix, A:" << endl << A << endl << endl; variable
5 cout << "The eigenvalues of A are:" << endl << es.eigenvalues() << endl;
6 cout << "The matrix of eigenvectors, V, is:" << endl << es.eigenvectors() << endl << endl; variable
9 cout << "Consider the first eigenvalue, lambda = " << lambda << endl; variable
11 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambd variable
12 cout << "... and A * v = " << endl << A.cast<complex<double> >() * v << endl << endl; variable
[all...]
H A DHouseholderSequence_HouseholderSequence.cpp2 cout << "The matrix v is:" << endl; variable
3 cout << v << endl; variable
6 cout << "The first Householder vector is: v_0 = " << v0.transpose() << endl;
8 cout << "The second Householder vector is: v_1 = " << v1.transpose() << endl;
10 cout << "The third Householder vector is: v_2 = " << v2.transpose() << endl;
13 cout << "The Householder coefficients are: h = " << h.transpose() << endl;
16 cout << "The first Householder reflection is represented by H_0 = " << endl; variable
17 cout << H0 << endl; variable
19 cout << "The second Householder reflection is represented by H_1 = " << endl; variable
20 cout << H1 << endl; variable
22 cout << "The third Householder reflection is represented by H_2 = " << endl; variable
23 cout << H2 << endl; variable
24 cout << "Their product is H_0 H_1 H_2 = " << endl; variable
25 cout << H0 * H1 * H2 << endl; variable
29 cout << "If we construct a HouseholderSequence from v and h" << endl; variable
30 cout << "and convert it to a matrix, we get:" << endl; variable
31 cout << hhSeqAsMatrix << endl; variable
[all...]
H A DSelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp3 cout << "Here is a random symmetric 5x5 matrix, A:" << endl << A << endl << endl; variable
6 cout << "The eigenvalues of A are:" << endl << es.eigenvalues() << endl;
7 cout << "The matrix of eigenvectors, V, is:" << endl << es.eigenvectors() << endl << endl; variable
10 cout << "Consider the first eigenvalue, lambda = " << lambda << endl; variable
12 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambd variable
13 cout << "... and A * v = " << endl << A * v << endl << endl; variable
[all...]
H A DSelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp3 cout << "Here is a random symmetric matrix, A:" << endl << A << endl; variable
6 cout << "and a random postive-definite matrix, B:" << endl << B << endl << endl; variable
9 cout << "The eigenvalues of the pencil (A,B) are:" << endl << es.eigenvalues() << endl;
10 cout << "The matrix of eigenvectors, V, is:" << endl << es.eigenvectors() << endl << endl; variable
13 cout << "Consider the first eigenvalue, lambda = " << lambda << endl; variable
15 cout << "If v is the corresponding eigenvector, then A * v = " << endl << A * v << endl; variable
16 cout << "... and lambda * B * v = " << endl << lambda * B * v << endl << endl; variable
[all...]
H A DTridiagonalization_diagonal.cpp3 cout << "Here is a random self-adjoint 4x4 matrix:" << endl << A << endl << endl; variable
7 cout << "The tridiagonal matrix T is:" << endl << T << endl << endl; variable
9 cout << "We can also extract the diagonals of T directly ..." << endl; variable
11 cout << "The diagonal is:" << endl << diag << endl; variable
13 cout << "The subdiagonal is:" << endl << subdia variable
[all...]
H A DTutorial_Map_using.cpp13 cout << "m1: " << m1 << endl; variable
14 cout << "m2: " << m2 << endl; variable
15 cout << "Squared euclidean distance: " << (m1-m2).squaredNorm() << endl;
17 (m1-m2map).squaredNorm() << endl;
19 cout << "Updated m2: " << m2 << endl; variable
20 cout << "m2 coefficient 2, constant accessor: " << m2mapconst(2) << endl;
H A Dclass_FullPivLU.cpp4 cout << "Here is the matrix m:" << endl << m << endl; variable
7 << endl << lu.matrixLU() << endl;
8 cout << "Here is the L part:" << endl; variable
11 cout << l << endl; variable
12 cout << "Here is the U part:" << endl; variable
14 cout << u << endl; variable
15 cout << "Let us now reconstruct the original matrix m:" << endl; variable
16 cout << lu.permutationP().inverse() * l * u * lu.permutationQ().inverse() << endl;
[all...]
H A Dtut_arithmetic_redux_minmax.cpp4 cout << "Here is the matrix m:\n" << m << endl; variable
10 cout << "Here is the vector v: " << v << endl; variable
12 << ") is at position " << i << endl; variable
/external/eigen/unsupported/doc/examples/
H A DPolynomialUtils1.cpp10 cout << "Roots: " << roots.transpose() << endl;
15 cout << polynomial[4] << ".x^4" << endl; local
H A DPolynomialSolver1.cpp13 cout << "Roots: " << roots.transpose() << endl;
18 cout << "Complex roots: " << psolve.roots().transpose() << endl;
23 cout << "Real roots: " << mapRR.transpose() << endl;
25 cout << endl; local
26 cout << "Illustration of the convergence problem with the QR algorithm: " << endl; local
27 cout << "---------------------------------------------------------------" << endl; local
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; local
38 cout << "Using double's almost always solves the problem for small degrees: " << endl; local
39 cout << "-------------------------------------------------------------------" << endl; local
47 cout << "Norms of the evaluations of the polynomial at the roots: " << evals.transpose() << endl << endl; local
[all...]
/external/zlib/src/contrib/iostream3/
H A Dtest.cc19 << 1.3 << "\nPlan " << 9 << std::endl;
23 << 1.3 << "\nPlan " << 9 << std::endl;
36 << 1.3 << "\nPlan " << 9 << std::endl; member in class:std
/external/bison/examples/calc++/
H A Dcalc++-driver.cc31 std::cerr << l << ": " << m << std::endl; member in class:std
37 std::cerr << m << std::endl; member in class:std
/external/chromium_org/third_party/libjingle/source/talk/examples/stunserver/
H A Dstunserver_main.cc41 std::cerr << "usage: stunserver address" << std::endl; member in class:std
56 std::cerr << "Failed to create a UDP socket" << std::endl; member in class:std
62 std::cout << "Listening at " << server_addr.ToString() << std::endl; member in class:std
/external/eigen/bench/
H A Dbasicbenchmark.cpp19 std::cout BOOST_PP_SEQ_FOR_EACH(_GENERATE_HEADER, ~, MODES ) << endl;
30 std::cout << endl; local
32 std::cout << endl; local
H A Dbenchmark.cpp37 cout << m << endl; local
H A DbenchmarkXcwise.cpp33 cout << m[0] << endl; local
/external/eigen/bench/btl/generic_bench/static/
H A Dstatic_size_generator.hh36 std::cout << tab_mflops.back() << " MFlops" << std::endl; member in class:static_size_generator::std
/external/eigen/doc/
H A Dtutorial.cpp11 std::cout << "*** Step 1 ***\nm3:\n" << m3 << "\nm4:\n" << m4 << std::endl; member in class:std
17 std::cout << "*** Step 2 ***\nm3:\n" << m3 << "\nm4:\n" << m4 << std::endl; member in class:std
23 std::cout << "*** Step 3 ***\nm3:\n" << m3 << "\nm4:\n" << m4 << std::endl; member in class:std
29 std::cout << "*** Step 4 ***\nm4:\n" << m4 << std::endl; member in class:std
34 std::cout << "*** Step 5 ***\nm4.diagonal():\n" << m4.diagonal() << std::endl; member in class:std
35 std::cout << "m4.diagonal().start(3)\n" << m4.diagonal().start(3) << std::endl; member in class:std
40 std::cout << "*** Step 6 ***\nm3:\n" << m3 << "\nm4:\n" << m4 << std::endl; member in class:std
43 std::cout << "*** Step 7 ***\n m4.sum(): " << m4.sum() << std::endl; member in class:std
44 std::cout << "m4.col(2).sum(): " << m4.col(2).sum() << std::endl; member in class:std
45 std::cout << "m4.colwise().sum():\n" << m4.colwise().sum() << std::endl; member in class:std
46 std::cout << "m4.rowwise().sum():\\n" << m4.rowwise().sum() << std::endl; member in class:std
61 std::cout << "*** Step 8 ***\\nm3:\\n" << m3 << "\\nm4:\\n" << m4 << std::endl; member in class:std
[all...]

Completed in 204 milliseconds

1234567891011>>