OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cout
(Results
126 - 150
of
770
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
Cwise_boolean_and.cpp
2
cout
<< ((v<w) && (v<0)) << endl;
Cwise_boolean_or.cpp
2
cout
<< ((v<w) || (v<0)) << endl;
EigenSolver_pseudoEigenvectors.cpp
2
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;
HessenbergDecomposition_matrixH.cpp
2
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;
HessenbergDecomposition_packedMatrix.cpp
2
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;
MatrixBase_array.cpp
4
cout
<< v << endl;
MatrixBase_col.cpp
3
cout
<< m << endl;
MatrixBase_cwiseAbs.cpp
4
cout
<< m.cwiseAbs() << endl;
MatrixBase_cwiseAbs2.cpp
4
cout
<< m.cwiseAbs2() << endl;
MatrixBase_isOrthogonal.cpp
3
cout
<< "Here's the vector v:" << endl << v << endl;
4
cout
<< "Here's the vector w:" << endl << w << endl;
5
cout
<< "v.isOrthogonal(w) returns: " << v.isOrthogonal(w) << endl;
6
cout
<< "v.isOrthogonal(w,1e-3) returns: " << v.isOrthogonal(w,1e-3) << endl;
MatrixBase_row.cpp
3
cout
<< m << endl;
MatrixBase_setIdentity.cpp
3
cout
<< m << endl;
PartialPivLU_solve.cpp
3
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;
RealSchur_RealSchur_MatrixType.cpp
2
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;
TopicAliasing_mult3.cpp
4
cout
<< matA;
Tridiagonalization_Tridiagonalization_MatrixType.cpp
3
cout
<< "Here is a random symmetric 5x5 matrix:" << endl << A << endl << endl;
6
cout
<< "The orthogonal matrix Q is:" << endl << Q << endl;
8
cout
<< "The tridiagonal matrix T is:" << endl << T << endl << endl;
9
cout
<< "Q * T * Q^T = " << endl << Q * T * Q.transpose() << endl;
Tridiagonalization_compute.cpp
5
cout
<< "The matrix T in the tridiagonal decomposition of A is: " << endl;
6
cout
<< tri.matrixT() << endl;
8
cout
<< "The matrix T in the tridiagonal decomposition of 2A is: " << endl;
9
cout
<< tri.matrixT() << endl;
Tridiagonalization_decomposeInPlace.cpp
3
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;
Tutorial_commainit_01.cpp
5
std::
cout
<< m;
Tutorial_solve_multiple_rhs.cpp
7
cout
<< "The solution with right-hand side (3,3,4) is:" << endl;
8
cout
<< X.col(0) << endl;
9
cout
<< "The solution with right-hand side (1,1,1) is:" << endl;
10
cout
<< X.col(1) << endl;
Tutorial_solve_reuse_decomposition.cpp
8
cout
<< "The solution with right-hand side (3,3,4) is:" << endl;
9
cout
<< x << endl;
12
cout
<< "The solution with right-hand side (1,1,1) is:" << endl;
13
cout
<< x << endl;
tut_arithmetic_redux_minmax.cpp
4
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
FullPivLU_kernel.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
4
cout
<< "Here is a matrix whose columns form a basis of the kernel of m:"
6
cout
<< "By definition of the kernel, m*ker is zero:"
/ndk/tests/device/issue22165-typeinfo/jni/
main.cpp
10
std::
cout
<< "call throw_an_exception()" << std::endl;
15
std::
cout
<< "my_exception caught!" << std::endl;
17
std::
cout
<< "ERROR: exception caught!" << std::endl;
21
std::
cout
<< "finished" << std::endl;
/external/eigen/doc/examples/
TutorialLinAlgInverseDeterminant.cpp
13
cout
<< "Here is the matrix A:\n" << A << endl;
14
cout
<< "The determinant of A is " << A.determinant() << endl;
15
cout
<< "The inverse of A is:\n" << A.inverse() << endl;
Completed in 44 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>