OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cout
(Results
126 - 150
of
586
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
MatrixBase_topRows_int.cpp
2
cout
<< "Here is the array a:" << endl << a << endl;
3
cout
<< "Here is a.topRows(2):" << endl;
4
cout
<< a.topRows(2) << endl;
6
cout
<< "Now the array a is:" << endl << a << endl;
Matrix_setConstant_int.cpp
3
cout
<< v << endl;
Matrix_setConstant_int_int.cpp
3
cout
<< m << endl;
Matrix_setIdentity_int_int.cpp
3
cout
<< m << endl;
Matrix_setOnes_int.cpp
3
cout
<< v << endl;
Matrix_setOnes_int_int.cpp
3
cout
<< m << endl;
Matrix_setRandom_int.cpp
3
cout
<< v << endl;
Matrix_setRandom_int_int.cpp
3
cout
<< m << endl;
Matrix_setZero_int.cpp
3
cout
<< v << endl;
Matrix_setZero_int_int.cpp
3
cout
<< m << endl;
TopicAliasing_mult1.cpp
4
cout
<< matA;
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;
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;
/ndk/tests/build/c++-stl-source-extensions/jni/
main.C
4
std::
cout
<< "Hello World!" << std::endl;
main.c++
4
std::
cout
<< "Hello World!" << std::endl;
main.cc
4
std::
cout
<< "Hello World!" << std::endl;
main.cpp
4
std::
cout
<< "Hello World!" << std::endl;
main.cxx
4
std::
cout
<< "Hello World!" << std::endl;
/ndk/tests/build/prebuild-stlport/jni/
build_stlport.cpp
20
std::
cout
<< "Hello Stlport!" << std::endl;
/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;
throwable.cpp
8
std::
cout
<< "throw_an_exception()" << std::endl;
/external/eigen/doc/examples/
TutorialLinAlgComputeTwice.cpp
13
cout
<< "Here is the matrix A:\n" << A << endl;
14
cout
<< "Here is the right hand side b:\n" << b << endl;
15
cout
<< "Computing LLT decomposition..." << endl;
17
cout
<< "The solution is:\n" << llt.solve(b) << endl;
19
cout
<< "The matrix A is now:\n" << A << endl;
20
cout
<< "Computing LLT decomposition..." << endl;
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;
12
std::
cout
<< "Here is mat*u:\n" << mat*u << std::endl;
13
std::
cout
<< "Here is u^T*mat:\n" << u.transpose()*mat << std::endl;
14
std::
cout
<< "Here is u^T*v:\n" << u.transpose()*v << std::endl;
15
std::
cout
<< "Here is u*v^T:\n" << u*v.transpose() << std::endl;
16
std::
cout
<< "Let's multiply mat by itself" << std::endl;
18
std::
cout
<< "Now mat is mat:\n" << mat << std::endl;
Completed in 118 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>