OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cout
(Results
201 - 225
of
770
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
MatrixBase_part.cpp
7
cout
<< "Here is the matrix m:" << endl << m << endl;
8
cout
<< "And let us now compute m*m.adjoint() in a very optimized way" << endl
12
cout
<< "The result is:" << endl << n << endl;
Tridiagonalization_packedMatrix.cpp
3
cout
<< "Here is a random symmetric 4x4 matrix:" << endl << A << endl;
6
cout
<< "The packed matrix M is:" << endl << pm << endl;
7
cout
<< "The diagonal and subdiagonal corresponds to the matrix T, which is:"
FullPivLU_solve.cpp
3
cout
<< "Here is the matrix m:" << endl << m << endl;
4
cout
<< "Here is the matrix y:" << endl << y << endl;
8
cout
<< "Here is a solution x to the equation mx=y:" << endl << x << endl;
11
cout
<< "The equation mx=y does not have any solution." << endl;
Map_outer_stride.cpp
3
cout
<< Map<MatrixXi, 0, OuterStride<> >(array, 3, 3, OuterStride<>(4)) << endl;
Map_simple.cpp
3
cout
<< Map<Matrix3i>(array) << endl;
MatrixBase_cast.cpp
3
cout
<< md + mf.cast<double>() << endl;
MatrixBase_extract.cpp
6
cout
<< "Here is the matrix m:" << endl << m << endl;
7
cout
<< "Here is the upper-triangular matrix extracted from m:" << endl
9
cout
<< "Here is the strictly-upper-triangular matrix extracted from m:" << endl
11
cout
<< "Here is the unit-lower-triangular matrix extracted from m:" << endl
MatrixBase_operatorNorm.cpp
2
cout
<< "The operator norm of the 3x3 matrix of ones is "
Matrix_resize_NoChange_int.cpp
3
cout
<< "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl;
Matrix_resize_int_NoChange.cpp
3
cout
<< "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl;
SelfAdjointView_operatorNorm.cpp
2
cout
<< "The operator norm of the 3x3 matrix of ones is "
compile_snippet.cpp.in
9
cout
.precision(3);
/external/eigen/doc/examples/
TemplateKeyword_simple.cpp
15
std::
cout
<< "m2 before copy:" << std::endl;
16
std::
cout
<< m2 << std::endl << std::endl;
18
std::
cout
<< "m2 after copy:" << std::endl;
19
std::
cout
<< m2 << std::endl << std::endl;
TutorialLinAlgRankRevealing.cpp
13
cout
<< "Here is the matrix A:\n" << A << endl;
15
cout
<< "The rank of A is " << lu_decomp.rank() << endl;
16
cout
<< "Here is a matrix whose columns form a basis of the null-space of A:\n"
18
cout
<< "Here is a matrix whose columns form a basis of the column-space of A:\n"
Tutorial_ArrayClass_interop_matrix.cpp
19
cout
<< "-- Matrix m*n: --" << endl << result << endl << endl;
21
cout
<< "-- Array m*n: --" << endl << result << endl << endl;
23
cout
<< "-- With cwiseProduct: --" << endl << result << endl << endl;
25
cout
<< "-- Array m + 4: --" << endl << result << endl << endl;
Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp
15
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;
tut_matrix_resize.cpp
10
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 "
DenseBase_middleCols_int.cpp
12
cout
<< "A =\n" << A << '\n' << endl;
13
cout
<< "A(1..3,:) =\n" << A.middleCols(1,3) << endl;
DenseBase_middleRows_int.cpp
12
cout
<< "A =\n" << A << '\n' << endl;
13
cout
<< "A(2..3,:) =\n" << A.middleRows(2,2) << endl;
DenseBase_template_int_middleCols.cpp
12
cout
<< "A =\n" << A << '\n' << endl;
13
cout
<< "A(:,1..3) =\n" << A.middleCols<3>(1) << endl;
DenseBase_template_int_middleRows.cpp
12
cout
<< "A =\n" << A << '\n' << endl;
13
cout
<< "A(1..3,:) =\n" << A.middleRows<3>(1) << endl;
/external/eigen/unsupported/doc/examples/
MatrixSine.cpp
9
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";
MatrixSinh.cpp
9
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";
/frameworks/base/tools/aapt/tests/
FileFinder_test.cpp
18
using std::
cout
;
26
cout
<< "\n\n STARTING FILE FINDER TESTS" << endl;
51
cout
<< "Checking DirectoryWalker...";
53
cout
<< "PASSED" << endl;
56
cout
<< "Running findFiles()...";
59
cout
<< "PASSED" << endl;
63
cout
<< "Running size comparison: Size is " << testStorage.size() << ", ";
64
cout
<< "Expected " << SIZE_EXPECTED << "...";
66
cout
<< "PASSED" << endl;
68
cout
<< "FAILED" << endl
[
all
...]
/ndk/tests/device/issue22165-typeinfo/jni/
throwable.cpp
8
std::
cout
<< "throw_an_exception()" << std::endl;
Completed in 72 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>