OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:endl
(Results
201 - 225
of
606
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
Tutorial_Map_using.cpp
13
cout << "m1: " << m1 <<
endl
;
variable
14
cout << "m2: " << m2 <<
endl
;
variable
15
cout << "Squared euclidean distance: " << (m1-m2).squaredNorm() <<
endl
;
17
(m1-m2map).squaredNorm() <<
endl
;
19
cout << "Updated m2: " << m2 <<
endl
;
variable
20
cout << "m2 coefficient 2, constant accessor: " << m2mapconst(2) <<
endl
;
Cwise_boolean_and.cpp
2
cout << ((v<w) && (v<0)) <<
endl
;
Cwise_boolean_or.cpp
2
cout << ((v<w) || (v<0)) <<
endl
;
Cwise_cos.cpp
2
cout << v.cos() <<
endl
;
Cwise_max.cpp
2
cout << v.max(w) <<
endl
;
Cwise_min.cpp
2
cout << v.min(w) <<
endl
;
Cwise_sin.cpp
2
cout << v.sin() <<
endl
;
Cwise_tan.cpp
2
cout << v.tan() <<
endl
;
MatrixBase_cwiseMax.cpp
2
cout << v.cwiseMax(w) <<
endl
;
MatrixBase_cwiseMin.cpp
2
cout << v.cwiseMin(w) <<
endl
;
MatrixBase_cwiseQuotient.cpp
2
cout << v.cwiseQuotient(w) <<
endl
;
Matrix_resize_int.cpp
5
cout << "v: " << v.rows() << " rows, " << v.cols() << " cols" <<
endl
;
6
cout << "w: " << w.rows() << " rows, " << w.cols() << " cols" <<
endl
;
TopicAliasing_mult2.cpp
6
cout << matB <<
endl
<<
endl
;
variable
Tutorial_solve_matrix_inverse.cpp
6
cout << "The solution is:" <<
endl
<< x <<
endl
;
variable
Tutorial_solve_triangular_inplace.cpp
6
cout << "The solution is:" <<
endl
<< b <<
endl
;
variable
/external/eigen/unsupported/doc/examples/
PolynomialSolver1.cpp
13
cout << "Roots: " << roots.transpose() <<
endl
;
18
cout << "Complex roots: " << psolve.roots().transpose() <<
endl
;
23
cout << "Real roots: " << mapRR.transpose() <<
endl
;
25
cout <<
endl
;
local
26
cout << "Illustration of the convergence problem with the QR algorithm: " <<
endl
;
local
27
cout << "---------------------------------------------------------------" <<
endl
;
local
31
cout << "Hard case polynomial defined by floats: " << hardCase_polynomial.transpose() <<
endl
;
33
cout << "Complex roots: " << psolvef.roots().transpose() <<
endl
;
36
cout << "Norms of the evaluations of the polynomial at the roots: " << evals.transpose() <<
endl
<<
endl
;
local
38
cout << "Using double's almost always solves the problem for small degrees: " <<
endl
;
local
39
cout << "-------------------------------------------------------------------" <<
endl
;
local
47
cout << "Norms of the evaluations of the polynomial at the roots: " << evals.transpose() <<
endl
<<
endl
;
local
[
all
...]
/external/eigen/doc/examples/
DenseBase_middleCols_int.cpp
12
cout << "A =\n" << A << '\n' <<
endl
;
local
13
cout << "A(1..3,:) =\n" << A.middleCols(1,3) <<
endl
;
DenseBase_middleRows_int.cpp
12
cout << "A =\n" << A << '\n' <<
endl
;
local
13
cout << "A(2..3,:) =\n" << A.middleRows(2,2) <<
endl
;
DenseBase_template_int_middleCols.cpp
12
cout << "A =\n" << A << '\n' <<
endl
;
local
13
cout << "A(:,1..3) =\n" << A.middleCols<3>(1) <<
endl
;
DenseBase_template_int_middleRows.cpp
12
cout << "A =\n" << A << '\n' <<
endl
;
local
13
cout << "A(1..3,:) =\n" << A.middleRows<3>(1) <<
endl
;
Tutorial_ArrayClass_mult.cpp
15
cout << "a * b = " <<
endl
<< a * b <<
endl
;
local
Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp
11
std::cout << "Column's maximum: " << std::
endl
12
<< mat.colwise().maxCoeff() << std::
endl
;
member in class:std
Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp
11
std::cout << "Row's maximum: " << std::
endl
12
<< mat.rowwise().maxCoeff() << std::
endl
;
member in class:std
Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp
15
std::cout << "Maximum sum at position " << maxIndex << std::
endl
;
member in class:std
17
std::cout << "The corresponding vector is: " << std::
endl
;
member in class:std
18
std::cout << mat.col( maxIndex ) << std::
endl
;
member in class:std
19
std::cout << "And its sum is is: " << maxNorm << std::
endl
;
member in class:std
tut_matrix_resize.cpp
11
<< m.rows() << "x" << m.cols() << std::
endl
;
member in class:std
12
std::cout << "It has " << m.size() << " coefficients" << std::
endl
;
member in class:std
15
std::cout << "The vector v is of size " << v.size() << std::
endl
;
member in class:std
17
<< v.rows() << "x" << v.cols() << std::
endl
;
member in class:std
Completed in 166 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>