/external/eigen/doc/snippets/ |
Matrix_setOnes_int_int.cpp | 3 cout << m << endl;
|
Matrix_setRandom_int.cpp | 3 cout << v << endl;
|
Matrix_setRandom_int_int.cpp | 3 cout << m << endl;
|
Matrix_setZero_int.cpp | 3 cout << v << endl;
|
Matrix_setZero_int_int.cpp | 3 cout << m << endl;
|
DirectionWise_replicate.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "m.colwise().replicate<3>() = ..." << endl; 4 cout << m.colwise().replicate<3>() << endl;
|
DirectionWise_replicate_int.cpp | 2 cout << "Here is the vector v:" << endl << v << endl; 3 cout << "v.rowwise().replicate(5) = ..." << endl; 4 cout << v.rowwise().replicate(5) << 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;
|
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";
|
DenseBase_LinSpaced.cpp | 0 cout << VectorXi::LinSpaced(4,7,10).transpose() << endl; 2 cout << VectorXd::LinSpaced(5,0.0,1.0).transpose() << endl;
|
DenseBase_LinSpaced_seq.cpp | 0 cout << VectorXi::LinSpaced(Sequential,4,7,10).transpose() << endl; 2 cout << VectorXd::LinSpaced(Sequential,5,0.0,1.0).transpose() << endl;
|
MatrixBase_inverse.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl; 3 cout << "Its inverse is:" << endl << m.inverse() << 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;
|
HouseholderSequence_HouseholderSequence.cpp | 2 cout << "The matrix v is:" << endl; 3 cout << v << endl; 6 cout << "The first Householder vector is: v_0 = " << v0.transpose() << endl; 8 cout << "The second Householder vector is: v_1 = " << v1.transpose() << endl; 10 cout << "The third Householder vector is: v_2 = " << v2.transpose() << endl; 13 cout << "The Householder coefficients are: h = " << h.transpose() << endl; 16 cout << "The first Householder reflection is represented by H_0 = " << endl; 17 cout << H0 << endl; 19 cout << "The second Householder reflection is represented by H_1 = " << endl; 20 cout << H1 << endl [all...] |
Cwise_abs.cpp | 2 cout << v.abs() << endl;
|
Cwise_abs2.cpp | 2 cout << v.abs2() << endl;
|
Cwise_acos.cpp | 2 cout << v.acos() << endl;
|
Cwise_cos.cpp | 2 cout << v.cos() << endl;
|
Cwise_equal_equal.cpp | 2 cout << (v==w) << endl;
|
Cwise_greater.cpp | 2 cout << (v>w) << endl;
|
Cwise_greater_equal.cpp | 2 cout << (v>=w) << endl;
|
Cwise_less.cpp | 2 cout << (v<w) << endl;
|
Cwise_less_equal.cpp | 2 cout << (v<=w) << endl;
|
/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;
|