Searched refs:cout (Results 76 - 100 of 596) sorted by relevance

1234567891011>>

/external/eigen/doc/snippets/
H A DMatrixBase_adjoint.cpp2 cout << "Here is the 2x2 complex matrix m:" << endl << m << endl;
3 cout << "Here is the adjoint of m:" << endl << m.adjoint() << endl;
H A DMatrixBase_cwiseAbs.cpp4 cout << m.cwiseAbs() << endl;
H A DMatrixBase_cwiseAbs2.cpp4 cout << m.cwiseAbs2() << endl;
H A DMatrixBase_cwiseInverse.cpp4 cout << m.cwiseInverse() << endl;
H A DMatrixBase_cwiseSqrt.cpp2 cout << v.cwiseSqrt() << endl;
H A DMatrixBase_diagonal.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here are the coefficients on the main diagonal of m:" << endl
H A DMatrixBase_inverse.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Its inverse is:" << endl << m.inverse() << endl;
H A DMatrixBase_prod.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the product of all the coefficients:" << endl << m.prod() << endl;
H A DPartialRedux_maxCoeff.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the maximum of each column:" << endl << m.colwise().maxCoeff() << endl;
H A DPartialRedux_minCoeff.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the minimum of each column:" << endl << m.colwise().minCoeff() << endl;
H A DPartialRedux_norm.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the norm of each column:" << endl << m.colwise().norm() << endl;
H A DPartialRedux_prod.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the product of each row:" << endl << m.rowwise().prod() << endl;
H A DPartialRedux_squaredNorm.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the square norm of each row:" << endl << m.rowwise().squaredNorm() << endl;
H A DPartialRedux_sum.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the sum of each row:" << endl << m.rowwise().sum() << endl;
H A DTopicAliasing_block.cpp3 cout << "Here is the matrix mat:\n" << mat << endl;
7 cout << "After the assignment, mat = \n" << mat << endl;
H A DTopicAliasing_block_correct.cpp3 cout << "Here is the matrix mat:\n" << mat << endl;
7 cout << "After the assignment, mat = \n" << mat << endl;
H A Dtut_arithmetic_transpose_aliasing.cpp2 cout << "Here is the matrix a:\n" << a << endl;
5 cout << "and the result of the aliasing effect:\n" << a << endl
H A Dtut_arithmetic_transpose_inplace.cpp2 cout << "Here is the initial matrix a:\n" << a << endl;
6 cout << "and after being transposed:\n" << a << endl
H A DHouseholderSequence_HouseholderSequence.cpp2 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 << H
[all...]
/external/chromium_org/tools/gyp/test/library_dirs/subdir/
H A Dhello.cc9 std::cout << "Hello " << my_foo(99) << std::endl;
/external/chromium_org/tools/gyp/test/mac/libraries/subdir/
H A Dhello.cc8 std::cout << "Hello, world!" << std::endl;
/external/eigen/bench/spbench/
H A Dspbenchsolver.cpp5 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<< " OPTION
[all...]
/external/eigen/doc/examples/
H A DTutorialLinAlgRankRevealing.cpp13 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"
H A DTutorial_BlockOperations_colrow.cpp12 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;
H A DTutorial_BlockOperations_print_block.cpp13 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;

Completed in 129 milliseconds

1234567891011>>