Searched refs:endl (Results 201 - 225 of 636) sorted by relevance

1234567891011>>

/external/eigen/doc/examples/
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 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 DDenseBase_middleCols_int.cpp12 cout << "A =\n" << A << '\n' << endl; local
13 cout << "A(1..3,:) =\n" << A.middleCols(1,3) << endl;
H A DDenseBase_middleRows_int.cpp12 cout << "A =\n" << A << '\n' << endl; local
13 cout << "A(2..3,:) =\n" << A.middleRows(2,2) << endl;
H A DDenseBase_template_int_middleCols.cpp12 cout << "A =\n" << A << '\n' << endl; local
13 cout << "A(:,1..3) =\n" << A.middleCols<3>(1) << endl;
H A DDenseBase_template_int_middleRows.cpp12 cout << "A =\n" << A << '\n' << endl; local
13 cout << "A(1..3,:) =\n" << A.middleRows<3>(1) << endl;
H A DTutorial_ArrayClass_mult.cpp15 cout << "a * b = " << endl << a * b << endl; local
H A DTutorial_ReductionsVisitorsBroadcasting_colwise.cpp11 std::cout << "Column's maximum: " << std::endl
12 << mat.colwise().maxCoeff() << std::endl; member in class:std
H A DTutorial_ReductionsVisitorsBroadcasting_rowwise.cpp11 std::cout << "Row's maximum: " << std::endl
12 << mat.rowwise().maxCoeff() << std::endl; member in class:std
/external/eigen/doc/snippets/
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 DCwise_boolean_and.cpp2 cout << ((v<w) && (v<0)) << endl;
H A DCwise_boolean_or.cpp2 cout << ((v<w) || (v<0)) << endl;
H A DCwise_cos.cpp2 cout << v.cos() << endl;
H A DCwise_max.cpp2 cout << v.max(w) << endl;
H A DCwise_min.cpp2 cout << v.min(w) << endl;
H A DCwise_sin.cpp2 cout << v.sin() << endl;
H A DCwise_tan.cpp2 cout << v.tan() << endl;
H A DMatrixBase_cwiseMax.cpp2 cout << v.cwiseMax(w) << endl;
H A DMatrixBase_cwiseMin.cpp2 cout << v.cwiseMin(w) << endl;
H A DMatrixBase_cwiseQuotient.cpp2 cout << v.cwiseQuotient(w) << endl;
H A DMatrix_resize_int.cpp5 cout << "v: " << v.rows() << " rows, " << v.cols() << " cols" << endl;
6 cout << "w: " << w.rows() << " rows, " << w.cols() << " cols" << endl;
H A DTopicAliasing_mult2.cpp6 cout << matB << endl << endl; variable
H A DTutorial_solve_matrix_inverse.cpp6 cout << "The solution is:" << endl << x << endl; variable
H A DTutorial_solve_triangular_inplace.cpp6 cout << "The solution is:" << endl << b << endl; variable
/external/eigen/unsupported/doc/examples/
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...]

Completed in 103 milliseconds

1234567891011>>