Searched refs:cout (Results 176 - 200 of 596) sorted by relevance

1234567891011>>

/external/eigen/doc/examples/
H A DTutorial_ArrayClass_cwise_other.cpp11 cout << "a =" << endl
13 cout << "a.abs() =" << endl
15 cout << "a.abs().sqrt() =" << endl
17 cout << "a.min(a.abs().sqrt()) =" << endl
H A DTutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp15 std::cout << "Maximum sum at position " << maxIndex << std::endl;
17 std::cout << "The corresponding vector is: " << std::endl;
18 std::cout << mat.col( maxIndex ) << std::endl;
19 std::cout << "And its sum is is: " << maxNorm << std::endl;
H A Dtut_matrix_resize.cpp10 std::cout << "The matrix m is of size "
12 std::cout << "It has " << m.size() << " coefficients" << std::endl;
15 std::cout << "The vector v is of size " << v.size() << std::endl;
16 std::cout << "As a matrix, v is of size "
H A DTutorialLinAlgExSolveColPivHouseholderQR.cpp13 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;
H A DTutorialLinAlgExSolveLDLT.cpp12 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;
/external/eigen/doc/snippets/
H A DDenseBase_setLinSpaced.cpp3 cout << v << endl;
H A DEigenSolver_pseudoEigenvectors.cpp2 cout << "Here is a random 6x6 matrix, A:" << endl << A << endl << endl;
7 cout << "The pseudo-eigenvalue matrix D is:" << endl << D << endl;
8 cout << "The pseudo-eigenvector matrix V is:" << endl << V << endl;
9 cout << "Finally, V * D * V^(-1) = " << endl << V * D * V.inverse() << endl;
H A DHessenbergDecomposition_matrixH.cpp2 cout << "Here is a random 4x4 matrix:" << endl << A << endl;
5 cout << "The Hessenberg matrix H is:" << endl << H << endl;
7 cout << "The orthogonal matrix Q is:" << endl << Q << endl;
8 cout << "Q H Q^T is:" << endl << Q * H * Q.transpose() << endl;
H A DHessenbergDecomposition_packedMatrix.cpp2 cout << "Here is a random 4x4 matrix:" << endl << A << endl;
5 cout << "The packed matrix M is:" << endl << pm << endl;
6 cout << "The upper Hessenberg part corresponds to the matrix H, which is:"
9 cout << "The vector of Householder coefficients is:" << endl << hc << endl;
H A DMatrixBase_array.cpp4 cout << v << endl;
H A DMatrixBase_col.cpp3 cout << m << endl;
H A DMatrixBase_row.cpp3 cout << m << endl;
H A DMatrixBase_setIdentity.cpp3 cout << m << endl;
H A DMatrixBase_setOnes.cpp3 cout << m << endl;
H A DMatrixBase_setRandom.cpp3 cout << m << endl;
H A DMatrixBase_setZero.cpp3 cout << m << endl;
H A DPartialPivLU_solve.cpp3 cout << "Here is the invertible matrix A:" << endl << A << endl;
4 cout << "Here is the matrix B:" << endl << B << endl;
6 cout << "Here is the (unique) solution X to the equation AX=B:" << endl << X << endl;
7 cout << "Relative error: " << (A*X-B).norm() / B.norm() << endl;
H A DRealSchur_RealSchur_MatrixType.cpp2 cout << "Here is a random 6x6 matrix, A:" << endl << A << endl << endl;
5 cout << "The orthogonal matrix U is:" << endl << schur.matrixU() << endl;
6 cout << "The quasi-triangular matrix T is:" << endl << schur.matrixT() << endl << endl;
10 cout << "U * T * U^T = " << endl << U * T * U.transpose() << endl;
H A DSelfAdjointView_operatorNorm.cpp2 cout << "The operator norm of the 3x3 matrix of ones is "
H A DTopicAliasing_mult3.cpp4 cout << matA;
H A DTridiagonalization_decomposeInPlace.cpp3 cout << "Here is a random symmetric 5x5 matrix:" << endl << A << endl << endl;
8 cout << "The orthogonal matrix Q is:" << endl << A << endl;
9 cout << "The diagonal of the tridiagonal matrix T is:" << endl << diag << endl;
10 cout << "The subdiagonal of the tridiagonal matrix T is:" << endl << subdiag << endl;
H A Dtut_arithmetic_redux_minmax.cpp4 cout << "Here is the matrix m:\n" << m << endl;
5 cout << "Its minimum coefficient (" << minOfM
10 cout << "Here is the vector v: " << v << endl;
11 cout << "Its maximum coefficient (" << maxOfV
/external/eigen/unsupported/doc/examples/
H A DMatrixSine.cpp9 std::cout << "A = \n" << A << "\n\n";
12 std::cout << "sin(A) = \n" << sinA << "\n\n";
15 std::cout << "cos(A) = \n" << cosA << "\n\n";
19 std::cout << "sin^2(A) + cos^2(A) = \n" << sinA*sinA + cosA*cosA << "\n\n";
H A DMatrixSinh.cpp9 std::cout << "A = \n" << A << "\n\n";
12 std::cout << "sinh(A) = \n" << sinhA << "\n\n";
15 std::cout << "cosh(A) = \n" << coshA << "\n\n";
19 std::cout << "cosh^2(A) - sinh^2(A) = \n" << coshA*coshA - sinhA*sinhA << "\n\n";
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;
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 << "Usin
[all...]

Completed in 9740 milliseconds

1234567891011>>