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

1 2 3 4 5 6 7 891011>>

  /external/eigen/doc/snippets/
Jacobi_makeGivens.cpp 4 cout << "Here is the vector v:" << endl << v << endl; variable
6 cout << "Here is the vector J' * v:" << endl << v << endl variable
Jacobi_makeJacobi.cpp 5 cout << "Here is the matrix m:" << endl << m << endl; variable
8 cout << "Here is the matrix J' * m * J:" << endl << m << endl variable
MatrixBase_hnormalized.cpp 3 cout << "v = " << v.transpose() << "]^T" << endl;
4 cout << "v.hnormalized() = " << v.hnormalized().transpose() << "]^T" << endl;
5 cout << "P*v = " << (P*v).transpose() << "]^T" << endl;
6 cout << "(P*v).hnormalized() = " << (P*v).hnormalized().transpose() << "]^T" << endl
MatrixBase_homogeneous.cpp 3 cout << "v = [" << v.transpose() << "]^T" << endl;
4 cout << "h.homogeneous() = [" << v.homogeneous().transpose() << "]^T" << endl;
5 cout << "(P * v.homogeneous()) = [" << (P * v.homogeneous()).transpose() << "]^T" << endl;
6 cout << "(P * v.homogeneous()).hnormalized() = [" << (P * v.homogeneous()).eval().hnormalized().transpose() << "]^T" << endl
MatrixBase_operatorNorm.cpp 3 << ones.operatorNorm() << endl;
Matrix_setConstant_int.cpp 3 cout << v << endl; variable
Matrix_setConstant_int_int.cpp 3 cout << m << endl; variable
Matrix_setIdentity_int_int.cpp 3 cout << m << endl; variable
Matrix_setOnes_int.cpp 3 cout << v << endl; variable
Matrix_setOnes_int_int.cpp 3 cout << m << endl; variable
Matrix_setRandom_int.cpp 3 cout << v << endl; variable
Matrix_setRandom_int_int.cpp 3 cout << m << endl; variable
Matrix_setZero_int.cpp 3 cout << v << endl; variable
Matrix_setZero_int_int.cpp 3 cout << m << endl; variable
RealSchur_compute.cpp 4 cout << "The matrix T in the decomposition of A is:" << endl << schur.matrixT() << endl;
6 cout << "The matrix T in the decomposition of A^(-1) is:" << endl << schur.matrixT() << 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;
Tridiagonalization_householderCoefficients.cpp 3 cout << "Here is a random symmetric 4x4 matrix:" << endl << A << endl; variable
6 cout << "The vector of Householder coefficients is:" << endl << hc << endl; variable
Tutorial_ReshapeMat2Vec.cpp 7 cout << "v1:" << endl << v1 << endl; variable
11 cout << "v2:" << endl << v2 << endl variable
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
SparseMatrix_coeffs.cpp 6 cout << "The matrix A is:" << endl << MatrixXd(A) << endl;
7 cout << "it has " << A.nonZeros() << " stored non zero coefficients that are: " << A.coeffs().transpose() << endl;
9 cout << "After adding 10 to every stored non zero coefficient, the matrix A is:" << endl << MatrixXd(A) << endl;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/list_update_map_/
trace_fn_imps.hpp 48 std::cerr << m_p_l << std::endl << std::endl; member in class:std
52 std::cerr << PB_DS_V2F(p_l->m_value) << std::endl; member in class:std
55 std::cerr << std::endl; member in class:std
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/list_update_map_/
trace_fn_imps.hpp 48 std::cerr << m_p_l << std::endl << std::endl; member in class:std
52 std::cerr << PB_DS_V2F(p_l->m_value) << std::endl; member in class:std
55 std::cerr << std::endl; member in class:std
  /external/eigen/doc/examples/
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

Completed in 143 milliseconds

1 2 3 4 5 6 7 891011>>