Searched refs:cout (Results 226 - 250 of 596) sorted by relevance

1234567891011>>

/external/eigen/doc/snippets/
H A DIOFormat.cpp10 std::cout << m1 << sep;
11 std::cout << m1.format(CommaInitFmt) << sep;
12 std::cout << m1.format(CleanFmt) << sep;
13 std::cout << m1.format(OctaveFmt) << sep;
14 std::cout << m1.format(HeavyFmt) << sep;
H A DTopicAliasing_cwise.cpp3 cout << "Here is the matrix mat:\n" << mat << endl << endl;
6 cout << "After 'mat = 2 * mat', mat = \n" << mat << endl << endl;
10 cout << "After the subtraction, it becomes\n" << mat << endl << endl;
15 cout << "After squaring, it becomes\n" << arr << endl << endl;
20 cout << "Doing everything at once yields\n" << mat << endl << endl;
H A DTridiagonalization_diagonal.cpp3 cout << "Here is a random self-adjoint 4x4 matrix:" << endl << A << endl << endl;
7 cout << "The tridiagonal matrix T is:" << endl << T << endl << endl;
9 cout << "We can also extract the diagonals of T directly ..." << endl;
11 cout << "The diagonal is:" << endl << diag << endl;
13 cout << "The subdiagonal is:" << endl << subdiag << endl;
H A DComplexEigenSolver_compute.cpp2 cout << "Here is a random 4x4 matrix, A:" << endl << A << endl << endl;
6 cout << "The eigenvalues of A are:" << endl << ces.eigenvalues() << endl;
7 cout << "The matrix of eigenvectors, V, is:" << endl << ces.eigenvectors() << endl << endl;
10 cout << "Consider the first eigenvalue, lambda = " << lambda << endl;
12 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambda * v << endl;
13 cout << "... and A * v = " << endl << A * v << endl << endl;
15 cout << "Finally, V * D * V^(-1) = " << endl
H A DEigenSolver_EigenSolver_MatrixType.cpp2 cout << "Here is a random 6x6 matrix, A:" << endl << A << endl << endl;
5 cout << "The eigenvalues of A are:" << endl << es.eigenvalues() << endl;
6 cout << "The matrix of eigenvectors, V, is:" << endl << es.eigenvectors() << endl << endl;
9 cout << "Consider the first eigenvalue, lambda = " << lambda << endl;
11 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambda * v << endl;
12 cout << "... and A * v = " << endl << A.cast<complex<double> >() * v << endl << endl;
16 cout << "Finally, V * D * V^(-1) = " << endl << V * D * V.inverse() << endl;
H A DSelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp3 cout << "Here is a random symmetric 5x5 matrix, A:" << endl << A << endl << endl;
6 cout << "The eigenvalues of A are:" << endl << es.eigenvalues() << endl;
7 cout << "The matrix of eigenvectors, V, is:" << endl << es.eigenvectors() << endl << endl;
10 cout << "Consider the first eigenvalue, lambda = " << lambda << endl;
12 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambda * v << endl;
13 cout << "... and A * v = " << endl << A * v << endl << endl;
17 cout << "Finally, V * D * V^(-1) = " << endl << V * D * V.inverse() << endl;
H A DSelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp3 cout << "Here is a random symmetric matrix, A:" << endl << A << endl;
6 cout << "and a random postive-definite matrix, B:" << endl << B << endl << endl;
9 cout << "The eigenvalues of the pencil (A,B) are:" << endl << es.eigenvalues() << endl;
10 cout << "The matrix of eigenvectors, V, is:" << endl << es.eigenvectors() << endl << endl;
13 cout << "Consider the first eigenvalue, lambda = " << lambda << endl;
15 cout << "If v is the corresponding eigenvector, then A * v = " << endl << A * v << endl;
16 cout << "... and lambda * B * v = " << endl << lambda * B * v << endl << endl;
H A DHouseholderQR_solve.cpp4 cout << "Here is the matrix m:" << endl << m << endl;
5 cout << "Here is the matrix y:" << endl << y << endl;
9 cout << "Here is a solution x to the equation mx=y:" << endl << x << endl;
H A DComplexEigenSolver_eigenvalues.cpp3 cout << "The eigenvalues of the 3x3 matrix of ones are:"
H A DComplexEigenSolver_eigenvectors.cpp3 cout << "The first eigenvector of the 3x3 matrix of ones is:"
H A DEigenSolver_eigenvalues.cpp3 cout << "The eigenvalues of the 3x3 matrix of ones are:"
H A DEigenSolver_eigenvectors.cpp3 cout << "The first eigenvector of the 3x3 matrix of ones is:"
/external/eigen/unsupported/doc/examples/
H A DPolynomialUtils1.cpp10 cout << "Roots: " << roots.transpose() << endl;
13 cout << "Polynomial: ";
14 for( int i=0; i<4; ++i ){ cout << polynomial[i] << ".x^" << i << "+ "; }
15 cout << polynomial[4] << ".x^4" << endl;
19 cout << "Evaluation of the polynomial at the roots: " << evaluation.transpose();
H A DMatrixSquareRoot.cpp13 std::cout << "The matrix A is:\n" << A << "\n\n";
14 std::cout << "The matrix square root of A is:\n" << A.sqrt() << "\n\n";
15 std::cout << "The square of the last matrix is:\n" << A.sqrt() * A.sqrt() << "\n";
/external/lldb/test/lang/cpp/stl/
H A Dmain.cpp16 std::cout << hello_world << std::endl;
17 std::cout << hello_world.length() << std::endl;
18 std::cout << hello_world[11] << std::endl;
21 std::cout << "size of upon construction associative_array: " << associative_array.size() << std::endl;
26 std::cout << "size of associative_array: " << associative_array.size() << std::endl;
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
H A Daudio_classifier_test.cc25 std::cout << "Usage: " << argv[0] <<
28 std::cout << "Where channels can be 1 (mono) or 2 (interleaved stereo),"; member in class:std
29 std::cout << " outputs can be 1 (classification (boolean)) or 2"; member in class:std
30 std::cout << " (classification and music probability (float)),"
32 std::cout << "and the sampling frequency is assumed to be 48 kHz."
40 std::cout << "Disallowed number of channels " << channels << std::endl;
46 std::cout << "Disallowed number of outputs " << outputs << std::endl;
56 std::cout << "Input file: " << input_filename << std::endl;
57 std::cout << "Output file: " << output_filename << std::endl;
61 std::cout << "Canno
[all...]
/external/eigen/unsupported/bench/
H A Dbench_svd.cpp42 cout << " Only compute Singular Values" <<endl;
60 cout << "Sample " << k << " : " << REPEAT << " computations : Jacobi : " << fixed << timerJacobi.value() << "s ";
61 cout << " || " << " BDC : " << timerBDC.value() << "s " <<endl <<endl;
64 cout << "KO : BDC is " << timerJacobi.value() / timerBDC.value() << " times faster than Jacobi" <<endl;
66 cout << "OK : BDC is " << timerJacobi.value() / timerBDC.value() << " times faster than Jacobi" <<endl;
69 cout << " =================" <<endl;
70 std::cout<< std::endl;
73 cout << " Computes rotaion matrix" <<endl;
91 cout << "Sample " << k << " : " << REPEAT << " computations : Jacobi : " << fixed << timerJacobi.value() << "s ";
92 cout << " || " << " BD
[all...]
/external/eigen/doc/
H A Dtutorial.cpp5 std::cout.precision(2);
11 std::cout << "*** Step 1 ***\nm3:\n" << m3 << "\nm4:\n" << m4 << std::endl;
17 std::cout << "*** Step 2 ***\nm3:\n" << m3 << "\nm4:\n" << m4 << std::endl;
23 std::cout << "*** Step 3 ***\nm3:\n" << m3 << "\nm4:\n" << m4 << std::endl;
29 std::cout << "*** Step 4 ***\nm4:\n" << m4 << std::endl;
34 std::cout << "*** Step 5 ***\nm4.diagonal():\n" << m4.diagonal() << std::endl;
35 std::cout << "m4.diagonal().start(3)\n" << m4.diagonal().start(3) << std::endl;
40 std::cout << "*** Step 6 ***\nm3:\n" << m3 << "\nm4:\n" << m4 << std::endl;
43 std::cout << "*** Step 7 ***\n m4.sum(): " << m4.sum() << std::endl;
44 std::cout << "m
[all...]
/external/zlib/src/contrib/iostream3/
H A Dtest.cc9 #include <iostream> // for cout
21 std::cout << "Wrote the following message to 'test1.txt.gz' (check with zcat or zless):\n"
25 std::cout << "\nReading 'test1.txt.gz' (buffered) produces:\n"; member in class:std
28 std::cout << buf << "\t(" << inf.rdbuf()->in_avail() << " chars left in buffer)\n";
38 std::cout << "\nWrote the same message to 'test2.txt.gz' in uncompressed form"; member in class:std
40 std::cout << "\nReading 'test2.txt.gz' (unbuffered) produces:\n"; member in class:std
44 std::cout << buf << "\t(" << inf.rdbuf()->in_avail() << " chars left in buffer)\n";
/external/eigen/doc/examples/
H A DTutorial_BlockOperations_block_assignment.cpp13 cout << "Here is the array a:" << endl << a << endl << endl;
15 cout << "Here is now a with m copied into its central 2x2 block:" << endl << a << endl << endl;
17 cout << "Here is now a with bottom-right 2x3 block copied into top-left 2x2 block:" << endl << a << endl << endl;
H A DTemplateKeyword_flexible.cpp17 std::cout << "m2 before copy:" << std::endl;
18 std::cout << m2 << std::endl << std::endl;
20 std::cout << "m2 after copy:" << std::endl;
21 std::cout << m2 << std::endl << std::endl;
H A DTemplateKeyword_simple.cpp15 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;
H A DTutorial_ArrayClass_interop_matrix.cpp19 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;
H A Dfunction_taking_ref.cpp15 cout << "matrix m:" << endl << m << endl << endl;
16 cout << "inv_cond(m): " << inv_cond(m) << endl;
17 cout << "inv_cond(m(1:3,1:3)): " << inv_cond(m.topLeftCorner(3,3)) << endl;
18 cout << "inv_cond(m+I): " << inv_cond(m+Matrix4f::Identity()) << endl;
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest_main.cc35 std::cout << "Running main() from gtest_main.cc\n"; member in class:std

Completed in 291 milliseconds

1234567891011>>