Searched defs:endl (Results 1 - 25 of 567) sorted by relevance

1234567891011>>

/external/eigen/doc/snippets/
H A DCwise_boolean_not.cpp4 cout << v << endl << endl; variable
5 cout << !isfinite(v) << endl;
H A DCwise_isFinite.cpp4 cout << v << endl << endl; variable
5 cout << isfinite(v) << endl;
H A DCwise_isInf.cpp4 cout << v << endl << endl; variable
5 cout << isinf(v) << endl;
H A DCwise_isNaN.cpp4 cout << v << endl << endl; variable
5 cout << isnan(v) << endl;
H A DCwise_minus_equal.cpp3 cout << v << endl; variable
H A DCwise_plus.cpp2 cout << v+5 << endl; variable
H A DCwise_plus_equal.cpp3 cout << v << endl; variable
H A DCwise_quotient.cpp2 cout << v/w << endl; variable
H A DCwise_slash_equal.cpp3 cout << v << endl; variable
H A DCwise_times_equal.cpp3 cout << v << endl; variable
H A DDenseBase_LinSpacedInt.cpp1 cout << "Even spacing inputs:" << endl; variable
2 cout << VectorXi::LinSpaced(8,1,4).transpose() << endl;
3 cout << VectorXi::LinSpaced(8,1,8).transpose() << endl;
4 cout << VectorXi::LinSpaced(8,1,15).transpose() << endl;
5 cout << "Uneven spacing inputs:" << endl; variable
6 cout << VectorXi::LinSpaced(8,1,7).transpose() << endl;
7 cout << VectorXi::LinSpaced(8,1,9).transpose() << endl;
8 cout << VectorXi::LinSpaced(8,1,16).transpose() << endl;
H A DMatrixBase_array.cpp4 cout << v << endl; variable
H A DMatrixBase_isOrthogonal.cpp3 cout << "Here's the vector v:" << endl << v << endl; variable
4 cout << "Here's the vector w:" << endl << w << endl; variable
5 cout << "v.isOrthogonal(w) returns: " << v.isOrthogonal(w) << endl;
6 cout << "v.isOrthogonal(w,1e-3) returns: " << v.isOrthogonal(w,1e-3) << endl;
H A DMatrixBase_select.cpp6 cout << m << endl; variable
H A DMatrix_resize_int_int.cpp3 cout << "here's the 2x3 matrix m:" << endl << m << endl; variable
4 cout << "let's resize m to 3x2. This is a conservative resizing because 2*3==3*2." << endl; variable
6 cout << "here's the 3x2 matrix m:" << endl << m << endl; variable
7 cout << "now let's resize m to size 2x2. This is NOT a conservative resizing, so it becomes uninitialized:" << endl; variable
9 cout << m << endl; variable
H A DTopicAliasing_block.cpp3 cout << "Here is the matrix mat:\n" << mat << endl; variable
7 cout << "After the assignment, mat = \n" << mat << endl; variable
H A DTopicAliasing_block_correct.cpp3 cout << "Here is the matrix mat:\n" << mat << endl; variable
7 cout << "After the assignment, mat = \n" << mat << endl; variable
H A DTutorial_ReshapeMat2Mat.cpp6 cout << "M2:" << endl << M2 << endl variable
H A DTutorial_ReshapeMat2Vec.cpp7 cout << "v1:" << endl << v1 << endl; variable
11 cout << "v2:" << endl << v2 << endl variable
H A Dtut_arithmetic_transpose_inplace.cpp2 cout << "Here is the initial matrix a:\n" << a << endl; variable
6 cout << "and after being transposed:\n" << a << endl variable
H A Dtut_matrix_assignment_resizing.cpp2 std::cout << "a is of size " << a.rows() << "x" << a.cols() << std::endl; member in class:std
5 std::cout << "a is now of size " << a.rows() << "x" << a.cols() << std::endl; member in class:std
/external/eigen/doc/examples/
H A DCwise_erf.cpp8 std::cout << v.erf() << std::endl; member in class:std
H A DCwise_erfc.cpp8 std::cout << v.erfc() << std::endl; member in class:std
H A DCwise_lgamma.cpp8 std::cout << v.lgamma() << std::endl; member in class:std
H A DQuickStart_example.cpp13 std::cout << m << std::endl; member in class:std

Completed in 158 milliseconds

1234567891011>>