HomeSort by relevance Sort by last modified time
    Searched refs:cout (Results 76 - 100 of 760) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/eigen/doc/snippets/
Cwise_pow.cpp 2 cout << v.pow(0.333333) << endl;
Cwise_sqrt.cpp 2 cout << v.sqrt() << endl;
Cwise_square.cpp 2 cout << v.square() << endl;
Map_placement_new.cpp 3 cout << "The mapped vector v is: " << v << "\n";
5 cout << "Now v is: " << v << "\n"
MatrixBase_adjoint.cpp 2 cout << "Here is the 2x2 complex matrix m:" << endl << m << endl;
3 cout << "Here is the adjoint of m:" << endl << m.adjoint() << endl;
MatrixBase_cwiseAbs.cpp 4 cout << m.cwiseAbs() << endl;
MatrixBase_cwiseAbs2.cpp 4 cout << m.cwiseAbs2() << endl;
MatrixBase_cwiseInverse.cpp 4 cout << m.cwiseInverse() << endl;
MatrixBase_cwiseSqrt.cpp 2 cout << v.cwiseSqrt() << endl;
MatrixBase_diagonal.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here are the coefficients on the main diagonal of m:" << endl
MatrixBase_inverse.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Its inverse is:" << endl << m.inverse() << endl;
MatrixBase_prod.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the product of all the coefficients:" << endl << m.prod() << endl;
PartialRedux_maxCoeff.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the maximum of each column:" << endl << m.colwise().maxCoeff() << endl;
PartialRedux_minCoeff.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the minimum of each column:" << endl << m.colwise().minCoeff() << endl;
PartialRedux_norm.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the norm of each column:" << endl << m.colwise().norm() << endl;
PartialRedux_prod.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the product of each row:" << endl << m.rowwise().prod() << endl;
PartialRedux_squaredNorm.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the square norm of each row:" << endl << m.rowwise().squaredNorm() << endl;
PartialRedux_sum.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the sum of each row:" << endl << m.rowwise().sum() << endl;
TopicAliasing_block.cpp 3 cout << "Here is the matrix mat:\n" << mat << endl;
7 cout << "After the assignment, mat = \n" << mat << endl;
TopicAliasing_block_correct.cpp 3 cout << "Here is the matrix mat:\n" << mat << endl;
7 cout << "After the assignment, mat = \n" << mat << endl;
tut_arithmetic_transpose_aliasing.cpp 2 cout << "Here is the matrix a:\n" << a << endl;
5 cout << "and the result of the aliasing effect:\n" << a << endl
tut_arithmetic_transpose_inplace.cpp 2 cout << "Here is the initial matrix a:\n" << a << endl;
6 cout << "and after being transposed:\n" << a << endl
  /ndk/sources/cxx-stl/llvm-libc++/test/
test_1.cc 39 std::cout.imbue(std::locale("C"));
40 std::cout << "Hello World" << std::endl;
  /ndk/tests/build/c++-stl-source-extensions/jni/
main.CPP 4 std::cout << "Hello World!" << std::endl;
  /ndk/tests/device/test-libc++/jni/
test_1.cc 39 std::cout.imbue(std::locale("C"));
40 std::cout << "Hello World" << std::endl;

Completed in 383 milliseconds

1 2 34 5 6 7 8 91011>>