/external/eigen/doc/snippets/ |
SelfAdjointView_eigenvalues.cpp | 3 cout << "The eigenvalues of the 3x3 matrix of ones are:" << endl << eivals << endl; variable
|
TopicAliasing_block.cpp | 3 cout << "Here is the matrix mat:\n" << mat << endl; variable 7 cout << "After the assignment, mat = \n" << mat << endl; variable
|
TopicAliasing_block_correct.cpp | 3 cout << "Here is the matrix mat:\n" << mat << endl; variable 7 cout << "After the assignment, mat = \n" << mat << endl; variable
|
tut_arithmetic_transpose_aliasing.cpp | 2 cout << "Here is the matrix a:\n" << a << endl; variable 5 cout << "and the result of the aliasing effect:\n" << a << endl variable
|
tut_arithmetic_transpose_inplace.cpp | 2 cout << "Here is the initial matrix a:\n" << a << endl; variable 6 cout << "and after being transposed:\n" << a << endl variable
|
HouseholderSequence_HouseholderSequence.cpp | 2 cout << "The matrix v is:" << endl; variable 3 cout << v << endl; variable 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; variable 17 cout << H0 << endl; variable 19 cout << "The second Householder reflection is represented by H_1 = " << endl; variable 20 cout << H1 << endl; variable 22 cout << "The third Householder reflection is represented by H_2 = " << endl; variable 23 cout << H2 << endl; variable 24 cout << "Their product is H_0 H_1 H_2 = " << endl; variable 25 cout << H0 * H1 * H2 << endl; variable 29 cout << "If we construct a HouseholderSequence from v and h" << endl; variable 30 cout << "and convert it to a matrix, we get:" << endl; variable 31 cout << hhSeqAsMatrix << endl; variable [all...] |
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;
|
Cwise_minus_equal.cpp | 3 cout << v << endl; variable
|
Cwise_plus_equal.cpp | 3 cout << v << endl; variable
|
Cwise_quotient.cpp | 2 cout << v/w << endl; variable
|
Cwise_slash_equal.cpp | 3 cout << v << endl; variable
|
Cwise_times_equal.cpp | 3 cout << v << endl; variable
|
DenseBase_LinSpaced_seq.cpp | 1 cout << VectorXi::LinSpaced(Sequential,4,7,10).transpose() << endl; 2 cout << VectorXd::LinSpaced(Sequential,5,0.0,1.0).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; variable 6 cout << "Here is the vector J' * v:" << endl << v << endl variable
|
Jacobi_makeJacobi.cpp | 5 cout << "Here is the matrix m:" << endl << m << endl; variable 8 cout << "Here is the matrix J' * m * J:" << endl << m << endl variable
|
MatrixBase_operatorNorm.cpp | 3 << ones.operatorNorm() << endl;
|
/ndk/tests/build/c++-stl-source-extensions/jni/ |
main.CPP | 4 std::cout << "Hello World!" << std::endl;
|
/external/chromium_org/tools/gyp/test/library_dirs/subdir/ |
hello.cc | 9 std::cout << "Hello " << my_foo(99) << std::endl; member in class:std
|
/external/chromium_org/tools/gyp/test/mac/libraries/subdir/ |
hello.cc | 8 std::cout << "Hello, world!" << std::endl; member in class:std
|
/external/eigen/doc/examples/ |
QuickStart_example2_dynamic.cpp | 11 cout << "m =" << endl << m << endl; local 14 cout << "m * v =" << endl << m * v << endl; local
|
QuickStart_example2_fixed.cpp | 11 cout << "m =" << endl << m << endl; local 14 cout << "m * v =" << endl << m * v << endl; local
|
TutorialLinAlgRankRevealing.cpp | 13 cout << "Here is the matrix A:\n" << A << endl; local 15 cout << "The rank of A is " << lu_decomp.rank() << endl; 17 << lu_decomp.kernel() << endl; 19 << lu_decomp.image(A) << endl; // yes, have to pass the original A
|
Tutorial_BlockOperations_colrow.cpp | 12 cout << "Here is the matrix m:" << endl << m << endl; local 13 cout << "2nd Row: " << m.row(1) << endl; 16 cout << m << endl; local
|
tut_arithmetic_scalar_mul_div.cpp | 12 std::cout << "a * 2.5 =\n" << a * 2.5 << std::endl; 13 std::cout << "0.1 * v =\n" << 0.1 * v << std::endl; 14 std::cout << "Doing v *= 2;" << std::endl; member in class:std 16 std::cout << "Now v =\n" << v << std::endl; member in class:std
|