HomeSort by relevance Sort by last modified time
    Searched defs:endl (Results 1 - 25 of 845) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/doc/snippets/
Cwise_boolean_not.cpp 4 cout << v << endl << endl; variable
5 cout << !isfinite(v) << endl;
Cwise_isFinite.cpp 4 cout << v << endl << endl; variable
5 cout << isfinite(v) << endl;
Cwise_isInf.cpp 4 cout << v << endl << endl; variable
5 cout << isinf(v) << endl;
Cwise_isNaN.cpp 4 cout << v << endl << endl; variable
5 cout << isnan(v) << endl;
Cwise_minus_equal.cpp 3 cout << v << endl; variable
Cwise_plus.cpp 2 cout << v+5 << 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_LinSpacedInt.cpp 1 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;
MatrixBase_array.cpp 4 cout << v << endl; variable
MatrixBase_isOrthogonal.cpp 3 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;
MatrixBase_select.cpp 6 cout << m << endl; variable
Matrix_resize_int_int.cpp 3 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
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
Tutorial_ReshapeMat2Mat.cpp 6 cout << "M2:" << endl << M2 << endl variable
Tutorial_ReshapeMat2Vec.cpp 7 cout << "v1:" << endl << v1 << endl; variable
11 cout << "v2:" << endl << v2 << 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
tut_matrix_assignment_resizing.cpp 2 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/
Cwise_erf.cpp 8 std::cout << v.erf() << std::endl; member in class:std
Cwise_erfc.cpp 8 std::cout << v.erfc() << std::endl; member in class:std
Cwise_lgamma.cpp 8 std::cout << v.lgamma() << std::endl; member in class:std
QuickStart_example.cpp 13 std::cout << m << std::endl; member in class:std

Completed in 337 milliseconds

1 2 3 4 5 6 7 8 91011>>