Searched refs:endl (Results 176 - 200 of 636) sorted by relevance

1234567891011>>

/external/eigen/doc/snippets/
H A DCwise_times_equal.cpp3 cout << v << endl; variable
H A DDenseBase_LinSpaced_seq.cpp1 cout << VectorXi::LinSpaced(Sequential,4,7,10).transpose() << endl;
2 cout << VectorXd::LinSpaced(Sequential,5,0.0,1.0).transpose() << endl;
H A DHessenbergDecomposition_compute.cpp4 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;
H A DJacobi_makeGivens.cpp4 cout << "Here is the vector v:" << endl << v << endl; variable
6 cout << "Here is the vector J' * v:" << endl << v << endl variable
H A DJacobi_makeJacobi.cpp5 cout << "Here is the matrix m:" << endl << m << endl; variable
8 cout << "Here is the matrix J' * m * J:" << endl << m << endl variable
H A DMatrixBase_operatorNorm.cpp3 << ones.operatorNorm() << endl;
H A DMatrix_setConstant_int.cpp3 cout << v << endl; variable
H A DMatrix_setConstant_int_int.cpp3 cout << m << endl; variable
H A DMatrix_setIdentity_int_int.cpp3 cout << m << endl; variable
H A DMatrix_setOnes_int.cpp3 cout << v << endl; variable
H A DMatrix_setOnes_int_int.cpp3 cout << m << endl; variable
H A DMatrix_setRandom_int.cpp3 cout << v << endl; variable
H A DMatrix_setRandom_int_int.cpp3 cout << m << endl; variable
H A DMatrix_setZero_int.cpp3 cout << v << endl; variable
H A DMatrix_setZero_int_int.cpp3 cout << m << endl; variable
H A DRealSchur_compute.cpp4 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;
H A DTridiagonalization_compute.cpp5 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;
H A DTridiagonalization_householderCoefficients.cpp3 cout << "Here is a random symmetric 4x4 matrix:" << endl << A << endl; variable
6 cout << "The vector of Householder coefficients is:" << endl << hc << endl; variable
H A DTutorial_solve_multiple_rhs.cpp7 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;
H A DTutorial_solve_reuse_decomposition.cpp8 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
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...]
/external/eigen/doc/examples/
H A DTutorialLinAlgComputeTwice.cpp13 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;
H A Dtut_arithmetic_matrix_mul.cpp11 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
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
/external/zlib/src/contrib/iostream2/
H A Dzstream_test.cpp17 cout << x << endl << y << endl << z << endl;
20 out << setw(50) << setfill('#') << setprecision(20) << x << endl << y << endl << z << endl;
21 out << z << endl << y << endl << x << endl;
22 out << 1.1234567890123456789 << endl;
[all...]

Completed in 100 milliseconds

1234567891011>>