OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:endl
(Results
126 - 150
of
606
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/examples/
Tutorial_ArrayClass_interop.cpp
19
cout << "-- Combination 1: --" <<
endl
<< result <<
endl
<<
endl
;
local
21
cout << "-- Combination 2: --" <<
endl
<< result <<
endl
<<
endl
;
local
tut_arithmetic_redux_basic.cpp
10
cout << "Here is mat.sum(): " << mat.sum() <<
endl
;
11
cout << "Here is mat.prod(): " << mat.prod() <<
endl
;
12
cout << "Here is mat.mean(): " << mat.mean() <<
endl
;
13
cout << "Here is mat.minCoeff(): " << mat.minCoeff() <<
endl
;
14
cout << "Here is mat.maxCoeff(): " << mat.maxCoeff() <<
endl
;
15
cout << "Here is mat.trace(): " << mat.trace() <<
endl
;
/external/eigen/doc/snippets/
HouseholderQR_solve.cpp
4
cout << "Here is the matrix m:" <<
endl
<< m <<
endl
;
variable
5
cout << "Here is the matrix y:" <<
endl
<< y <<
endl
;
variable
9
cout << "Here is a solution x to the equation mx=y:" <<
endl
<< x <<
endl
;
variable
ComplexEigenSolver_eigenvalues.cpp
4
<<
endl
<< ces.eigenvalues() <<
endl
;
ComplexEigenSolver_eigenvectors.cpp
4
<<
endl
<< ces.eigenvectors().col(1) <<
endl
;
Cwise_abs.cpp
2
cout << v.abs() <<
endl
;
Cwise_abs2.cpp
2
cout << v.abs2() <<
endl
;
Cwise_acos.cpp
2
cout << v.acos() <<
endl
;
Cwise_asin.cpp
2
cout << v.asin() <<
endl
;
Cwise_cube.cpp
2
cout << v.cube() <<
endl
;
Cwise_equal_equal.cpp
2
cout << (v==w) <<
endl
;
Cwise_exp.cpp
2
cout << v.exp() <<
endl
;
Cwise_greater.cpp
2
cout << (v>w) <<
endl
;
Cwise_greater_equal.cpp
2
cout << (v>=w) <<
endl
;
Cwise_inverse.cpp
2
cout << v.inverse() <<
endl
;
Cwise_less.cpp
2
cout << (v<w) <<
endl
;
Cwise_less_equal.cpp
2
cout << (v<=w) <<
endl
;
Cwise_log.cpp
2
cout << v.log() <<
endl
;
Cwise_not_equal.cpp
2
cout << (v!=w) <<
endl
;
Cwise_pow.cpp
2
cout << v.pow(0.333333) <<
endl
;
Cwise_sqrt.cpp
2
cout << v.sqrt() <<
endl
;
Cwise_square.cpp
2
cout << v.square() <<
endl
;
EigenSolver_eigenvalues.cpp
4
<<
endl
<< es.eigenvalues() <<
endl
;
EigenSolver_eigenvectors.cpp
4
<<
endl
<< es.eigenvectors().col(1) <<
endl
;
MatrixBase_cwiseAbs.cpp
4
cout << m.cwiseAbs() <<
endl
;
Completed in 1169 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>