HomeSort by relevance Sort by last modified time
    Searched refs:cout (Results 276 - 300 of 586) sorted by null

<<11121314151617181920>>

  /external/eigen/doc/examples/
Tutorial_ArrayClass_accessors.cpp 16 cout << m << endl << endl;
23 cout << m << endl;
Tutorial_ArrayClass_addition.cpp 19 cout << "a + b = " << endl << a + b << endl << endl;
22 cout << "a - 2 = " << endl << a - 2 << endl;
Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp 22 cout << "Nearest neighbour is column " << index << ":" << endl;
23 cout << m.col(index) << endl;
Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp 19 std::cout << "Broadcasting result: " << std::endl;
20 std::cout << mat << std::endl;
Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp 18 std::cout << "Broadcasting result: " << std::endl;
19 std::cout << mat << std::endl;
tut_matrix_coefficient_accessors.cpp 13 std::cout << "Here is the matrix m:\n" << m << std::endl;
17 std::cout << "Here is the vector v:\n" << v << std::endl;
  /external/eigen/doc/snippets/
ComplexSchur_compute.cpp 4 cout << "The matrix T in the decomposition of A is:" << endl << schur.matrixT() << endl;
6 cout << "The matrix T in the decomposition of A^(-1) is:" << endl << schur.matrixT() << endl;
EigenSolver_compute.cpp 4 cout << "The eigenvalues of A are: " << es.eigenvalues().transpose() << endl;
6 cout << "The eigenvalues of A+I are: " << es.eigenvalues().transpose() << endl;
HessenbergDecomposition_compute.cpp 4 cout << "The matrix H in the decomposition of A is:" << endl << hd.matrixH() << endl;
6 cout << "The matrix H in the decomposition of 2A is:" << endl << hd.matrixH() << endl;
Jacobi_makeGivens.cpp 4 cout << "Here is the vector v:" << endl << v << endl;
6 cout << "Here is the vector J' * v:" << endl << v << endl
Jacobi_makeJacobi.cpp 5 cout << "Here is the matrix m:" << endl << m << endl;
8 cout << "Here is the matrix J' * m * J:" << endl << m << endl
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;
RealSchur_compute.cpp 4 cout << "The matrix T in the decomposition of A is:" << endl << schur.matrixT() << endl;
6 cout << "The matrix T in the decomposition of A^(-1) is:" << endl << schur.matrixT() << endl;
SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp 5 cout << "The eigenvalues of A are: " << es.eigenvalues().transpose() << endl;
7 cout << "The eigenvalues of A+I are: " << es.eigenvalues().transpose() << endl;
SelfAdjointEigenSolver_compute_MatrixType.cpp 5 cout << "The eigenvalues of A are: " << es.eigenvalues().transpose() << endl;
7 cout << "The eigenvalues of A+I are: " << es.eigenvalues().transpose() << endl;
Tridiagonalization_householderCoefficients.cpp 3 cout << "Here is a random symmetric 4x4 matrix:" << endl << A << endl;
6 cout << "The vector of Householder coefficients is:" << endl << hc << endl;
Tutorial_AdvancedInitialization_LinSpaced.cpp 6 std::cout << " Degrees Radians Sine Cosine\n"; member in class:std
7 std::cout << table << std::endl;
tut_matrix_assignment_resizing.cpp 2 std::cout << "a is of size " << a.rows() << "x" << a.cols() << std::endl;
5 std::cout << "a is now of size " << a.rows() << "x" << a.cols() << std::endl;
  /external/eigen/unsupported/doc/examples/
MatrixExponential.cpp 14 std::cout << "The matrix A is:\n" << A << "\n\n";
15 std::cout << "The matrix exponential of A is:\n" << A.exp() << "\n\n";
MatrixFunction.cpp 20 std::cout << "The matrix A is:\n" << A << "\n\n";
21 std::cout << "The matrix exponential of A is:\n"
MatrixLogarithm.cpp 13 std::cout << "The matrix A is:\n" << A << "\n\n";
14 std::cout << "The matrix logarithm of A is:\n" << A.log() << "\n";
  /ndk/tests/build/c++-stl-source-extensions/jni/
main.cp 4 std::cout << "Hello World!" << std::endl;
  /ndk/tests/device/issue22165-typeinfo/jni/
myexception.h 14 std::cout << "yep! i am in constructor" << std::endl;
19 std::cout << "yep! i am in desctuctor" << std::endl;
  /external/eigen/bench/btl/data/
mean.cxx 109 cout << "<TABLE BORDER CELLPADDING=2>" << endl ;
110 cout << " <TR>" << endl ;
111 cout << " <TH ALIGN=CENTER> " << argv[1] << " </TH>" << endl ;
112 cout << " <TH ALIGN=CENTER> <a href=""#mean_marker""> in cache <BR> mean perf <BR> Mflops </a></TH>" << endl ;
113 cout << " <TH ALIGN=CENTER> in cache <BR> % best </TH>" << endl ;
114 cout << " <TH ALIGN=CENTER> <a href=""#mean_marker""> out of cache <BR> mean perf <BR> Mflops </a></TH>" << endl ;
115 cout << " <TH ALIGN=CENTER> out of cache <BR> % best </TH>" << endl ;
116 cout << " <TH ALIGN=CENTER> details </TH>" << endl ;
117 cout << " <TH ALIGN=CENTER> comments </TH>" << endl ;
118 cout << " </TR>" << endl
    [all...]

Completed in 427 milliseconds

<<11121314151617181920>>