/external/eigen/doc/snippets/ |
MatrixBase_identity.cpp | 0 cout << Matrix<double, 3, 4>::Identity() << endl;
|
MatrixBase_identity_int_int.cpp | 0 cout << MatrixXd::Identity(4, 3) << endl;
|
MatrixBase_ones_int_int.cpp | 0 cout << MatrixXi::Ones(2,3) << endl;
|
MatrixBase_random.cpp | 0 cout << 100 * Matrix2i::Random() << endl;
|
MatrixBase_random_int.cpp | 0 cout << VectorXi::Random(2) << endl;
|
MatrixBase_random_int_int.cpp | 0 cout << MatrixXi::Random(2,3) << endl;
|
MatrixBase_zero_int_int.cpp | 0 cout << MatrixXi::Zero(2,3) << endl;
|
MatrixBase_replicate.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "m.replicate<3,2>() = ..." << endl; 4 cout << m.replicate<3,2>() << endl;
|
MatrixBase_replicate_int_int.cpp | 2 cout << "Here is the vector v:" << endl << v << endl; 3 cout << "v.replicate(2,5) = ..." << endl; 4 cout << v.replicate(2,5) << endl;
|
Cwise_plus.cpp | 2 cout << v+5 << endl;
|
DenseBase_LinSpaced.cpp | 0 cout << VectorXi::LinSpaced(4,7,10).transpose() << endl; 2 cout << VectorXd::LinSpaced(5,0.0,1.0).transpose() << endl;
|
MatrixBase_ones.cpp | 0 cout << Matrix2d::Ones() << endl; 2 cout << 6 * RowVector4i::Ones() << endl;
|
MatrixBase_ones_int.cpp | 0 cout << 6 * RowVectorXi::Ones(4) << endl; 2 cout << VectorXf::Ones(2) << endl;
|
MatrixBase_zero.cpp | 0 cout << Matrix2d::Zero() << endl; 2 cout << RowVector4i::Zero() << endl;
|
MatrixBase_zero_int.cpp | 0 cout << RowVectorXi::Zero(4) << endl; 2 cout << VectorXf::Zero(2) << endl;
|
tut_arithmetic_transpose_conjugate.cpp | 2 cout << "Here is the matrix a\n" << a << endl; 4 cout << "Here is the matrix a^T\n" << a.transpose() << endl; 7 cout << "Here is the conjugate of a\n" << a.conjugate() << endl; 10 cout << "Here is the matrix a^*\n" << a.adjoint() << endl;
|
Cwise_minus.cpp | 2 cout << v-5 << endl;
|
MatrixBase_asDiagonal.cpp | 0 cout << Matrix3i(Vector3i(2,5,6).asDiagonal()) << endl;
|
TopicStorageOrders_example.cpp | 5 cout << "The matrix A:" << endl; 6 cout << Acolmajor << endl << endl; 8 cout << "In memory (column-major):" << endl; 10 cout << *(Acolmajor.data() + i) << " "; 11 cout << endl << endl; 14 cout << "In memory (row-major):" << endl; 16 cout << *(Arowmajor.data() + i) << " "; 17 cout << endl;
|
Tutorial_AdvancedInitialization_Zero.cpp | 1 std::cout << "A fixed-size array:\n"; member in class:std 3 std::cout << a1 << "\n\n"; 6 std::cout << "A one-dimensional dynamic-size array:\n"; member in class:std 8 std::cout << a2 << "\n\n"; 11 std::cout << "A two-dimensional dynamic-size array:\n"; member in class:std 13 std::cout << a3 << "\n";
|
Vectorwise_reverse.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Here is the rowwise reverse of m:" << endl << m.rowwise().reverse() << endl; 4 cout << "Here is the colwise reverse of m:" << endl << m.colwise().reverse() << endl; 6 cout << "Here is the coefficient (1,0) in the rowise reverse of m:" << endl 8 cout << "Let us overwrite this coefficient with the value 4." << endl; 10 cout << "Now the matrix m is:" << endl << m << endl;
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.objects/narrow.stream.objects/ |
cin.pass.cpp | 20 std::cout << "Hello World!\n"; 22 std::cout << "Enter a number: "; 24 std::cout << "The number is : " << i << '\n'; 26 assert(std::cin.tie() == &std::cout);
|
cout.pass.cpp | 12 // istream cout; 19 std::cout << "Hello World!\n"; 21 std::cout << "Enter a number: "; 23 std::cout << "The number is : " << i << '\n'; 25 (void)std::cout;
|
/ndk/tests/device/test-gnustl-2/jni/ |
hello.cpp | 7 std::cout << "Hello "; member in class:std 8 std::cout << 1.0; 9 std::cout << now; 10 std::cout << " World" << std::endl;
|
/system/extras/tests/bionic/libc/common/ |
hello_world.cpp | 6 cout << "Hello World" << endl;
|