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

1 2 3 45 6 7 8 91011>>

  /ndk/tests/device/test-libc++-shared/jni/
test_1.cc 39 std::cout.imbue(std::locale("C"));
40 std::cout << "Hello World" << std::endl;
  /ndk/tests/device/test-libc++-static/jni/
test_1.cc 39 std::cout.imbue(std::locale("C"));
40 std::cout << "Hello World" << std::endl;
  /external/eigen/doc/snippets/
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_minus_equal.cpp 3 cout << v << endl;
Cwise_plus_equal.cpp 3 cout << v << endl;
Cwise_quotient.cpp 2 cout << v/w << endl;
Cwise_slash_equal.cpp 3 cout << v << endl;
Cwise_times_equal.cpp 3 cout << v << 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;
FullPivLU_solve.cpp 3 cout << "Here is the matrix m:" << endl << m << endl;
4 cout << "Here is the matrix y:" << endl << y << endl;
8 cout << "Here is a solution x to the equation mx=y:" << endl << x << endl;
11 cout << "The equation mx=y does not have any solution." << endl;
MatrixBase_bottomLeftCorner_int_int.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is m.bottomLeftCorner(2, 2):" << endl;
4 cout << m.bottomLeftCorner(2, 2) << endl;
6 cout << "Now the matrix m is:" << endl << m << endl;
MatrixBase_bottomRightCorner_int_int.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is m.bottomRightCorner(2, 2):" << endl;
4 cout << m.bottomRightCorner(2, 2) << endl;
6 cout << "Now the matrix m is:" << endl << m << endl;
MatrixBase_bottomRows_int.cpp 2 cout << "Here is the array a:" << endl << a << endl;
3 cout << "Here is a.bottomRows(2):" << endl;
4 cout << a.bottomRows(2) << endl;
6 cout << "Now the array a is:" << endl << a << endl;
MatrixBase_computeInverseAndDetWithCheck.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
7 cout << "Its determinant is " << determinant << endl;
9 cout << "It is invertible, and its inverse is:" << endl << inverse << endl;
12 cout << "It is not invertible." << endl;
MatrixBase_isOrthogonal.cpp 3 cout << "Here's the vector v:" << endl << v << endl;
4 cout << "Here's the vector w:" << endl << w << endl;
5 cout << "v.isOrthogonal(w) returns: " << v.isOrthogonal(w) << endl;
6 cout << "v.isOrthogonal(w,1e-3) returns: " << v.isOrthogonal(w,1e-3) << endl;
MatrixBase_leftCols_int.cpp 2 cout << "Here is the array a:" << endl << a << endl;
3 cout << "Here is a.leftCols(2):" << endl;
4 cout << a.leftCols(2) << endl;
6 cout << "Now the array a is:" << endl << a << endl;
MatrixBase_operatorNorm.cpp 2 cout << "The operator norm of the 3x3 matrix of ones is "
MatrixBase_rightCols_int.cpp 2 cout << "Here is the array a:" << endl << a << endl;
3 cout << "Here is a.rightCols(2):" << endl;
4 cout << a.rightCols(2) << endl;
6 cout << "Now the array a is:" << endl << a << endl;
  /external/chromium_org/tools/gyp/test/library_dirs/subdir/
hello.cc 9 std::cout << "Hello " << my_foo(99) << std::endl;
  /external/chromium_org/tools/gyp/test/mac/libraries/subdir/
hello.cc 8 std::cout << "Hello, world!" << std::endl;
  /external/eigen/bench/spbench/
spbenchsolver.cpp 5 cout<< " \nbenchsolver : performs a benchmark of all the solvers available in Eigen \n\n";
6 cout<< " MATRIX FOLDER : \n";
7 cout<< " The matrices for the benchmark should be collected in a folder specified with an environment variable EIGEN_MATRIXDIR \n";
8 cout<< " The matrices are stored using the matrix market coordinate format \n";
9 cout<< " The matrix and associated right-hand side (rhs) files are named respectively \n";
10 cout<< " as MatrixName.mtx and MatrixName_b.mtx. If the rhs does not exist, a random one is generated. \n";
11 cout<< " If a matrix is SPD, the matrix should be named as MatrixName_SPD.mtx \n";
12 cout<< " If a true solution exists, it should be named as MatrixName_x.mtx; \n" ;
13 cout<< " it will be used to compute the norm of the error relative to the computed solutions\n\n";
14 cout<< " OPTIONS : \n";
    [all...]
  /external/eigen/doc/examples/
TutorialLinAlgRankRevealing.cpp 13 cout << "Here is the matrix A:\n" << A << endl;
15 cout << "The rank of A is " << lu_decomp.rank() << endl;
16 cout << "Here is a matrix whose columns form a basis of the null-space of A:\n"
18 cout << "Here is a matrix whose columns form a basis of the column-space of A:\n"
Tutorial_BlockOperations_colrow.cpp 12 cout << "Here is the matrix m:" << endl << m << endl;
13 cout << "2nd Row: " << m.row(1) << endl;
15 cout << "After adding 3 times the first column into the third column, the matrix m is:\n";
16 cout << m << endl;
Tutorial_BlockOperations_print_block.cpp 13 cout << "Block in the middle" << endl;
14 cout << m.block<2,2>(1,1) << endl << endl;
17 cout << "Block of size " << i << "x" << i << endl;
18 cout << m.block(0,0,i,i) << endl << endl;
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;
16 std::cout << "Now v =\n" << v << std::endl;

Completed in 525 milliseconds

1 2 3 45 6 7 8 91011>>