Searched defs:endl (Results 101 - 125 of 438) sorted by relevance

1234567891011>>

/external/eigen/doc/snippets/
H A DMatrix_setOnes_int_int.cpp3 cout << m << endl; variable
H A DMatrix_setRandom_int.cpp3 cout << v << endl; variable
H A DMatrix_setRandom_int_int.cpp3 cout << m << endl; variable
H A DMatrix_setZero_int.cpp3 cout << v << endl; variable
H A DMatrix_setZero_int_int.cpp3 cout << m << endl; variable
H A DPartialRedux_count.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
3 cout << "Here is the count of elements larger or equal than 0.5 of each row:" << endl << (m.array() >= 0.5).rowwise().count() << endl;
H A DPartialRedux_maxCoeff.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
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; variable
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; variable
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; variable
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; variable
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; variable
3 cout << "Here is the sum of each row:" << endl << m.rowwise().sum() << endl;
H A DTopicAliasing_cwise.cpp3 cout << "Here is the matrix mat:\n" << mat << endl << endl; variable
6 cout << "After 'mat = 2 * mat', mat = \n" << mat << endl << endl; variable
10 cout << "After the subtraction, it becomes\n" << mat << endl << endl; variable
15 cout << "After squaring, it becomes\n" << arr << endl << endl; variable
20 cout << "Doing everything at once yields\n" << mat << endl << endl; variable
[all...]
H A DTopicAliasing_mult2.cpp6 cout << matB << endl << endl; variable
H A DTutorial_AdvancedInitialization_Block.cpp5 std::cout << matB << std::endl; member in class:std
H A DTutorial_AdvancedInitialization_CommaTemporary.cpp2 std::cout << mat << std::endl << std::endl; member in class:std
4 std::cout << mat << std::endl; member in class:std
H A DTutorial_AdvancedInitialization_LinSpaced.cpp7 std::cout << table << std::endl; member in class:std
H A DTutorial_AdvancedInitialization_ThreeWays.cpp7 std::cout << mat1 << std::endl << std::endl; member in class:std
14 std::cout << mat2 << std::endl << std::endl; member in class:std
19 std::cout << mat3 << std::endl; member in class:std
H A DVectorwise_reverse.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
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
7 << m.rowwise().reverse()(1,0) << endl;
8 cout << "Let us overwrite this coefficient with the value 4." << endl; variable
10 cout << "Now the matrix m is:" << endl << variable
[all...]
H A Dtut_arithmetic_transpose_aliasing.cpp2 cout << "Here is the matrix a:\n" << a << endl; variable
5 cout << "and the result of the aliasing effect:\n" << a << endl variable
H A Dtut_arithmetic_transpose_conjugate.cpp2 cout << "Here is the matrix a\n" << a << endl; variable
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;
/external/zlib/src/contrib/iostream/
H A Dtest.cpp12 os << "Hello, Mommy" << endl; local
15 os << "hello, hello, hi, ho!" << endl; local
18 << "I'm compressing again" << endl;
/external/eigen/doc/examples/
H A DDenseBase_middleCols_int.cpp12 cout << "A =\n" << A << '\n' << endl; local
13 cout << "A(1..3,:) =\n" << A.middleCols(1,3) << endl;
H A DDenseBase_middleRows_int.cpp12 cout << "A =\n" << A << '\n' << endl; local
13 cout << "A(2..3,:) =\n" << A.middleRows(2,2) << endl;
H A DDenseBase_template_int_middleCols.cpp12 cout << "A =\n" << A << '\n' << endl; local
13 cout << "A(:,1..3) =\n" << A.middleCols<3>(1) << endl;

Completed in 493 milliseconds

1234567891011>>